Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [geomesa-users] CassandraDataStoreFactory could not be instantiated

Here is my current log config


On 2017-02-10 14:36, Kristian Nygaard Jensen wrote:
On 2017-02-09 21:25, Eric Talbot wrote:
Hello Kristian,

We've done all of our testing with Cassandra 3.9. It might be worth upgrading your cassandra and then trying again. Just make sure to copy the upgraded Cassandra jars in geomesa/WEB-INF/lib.

Eric

I have now tried to change the cassandra libs to the official apache cassandra 3.9, and get the same result. Do you know how to make geotools logs more verbose?


_______________________________________________
geomesa-users mailing list
geomesa-users@xxxxxxxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.locationtech.org/mailman/listinfo/geomesa-users

## This log4j configuration file needs to stay here, and is used as the default logging setup
## during data_dir upgrades and in case the chosen logging config isn't available.
##
## As GeoTools uses java.util.logging logging instead of log4j, GeoServer makes
## the following mappings to adjust the log4j levels specified in this file to
## the GeoTools logging system:
##
## Log4J Level          java.util.logging Level
## --------------------------------------------
## ALL                   FINEST
## TRACE                 FINER
## DEBUG                 FINE (includes CONFIG)
## INFO                  INFO
## WARN/ERROR            WARNING
## FATAL                 SEVERE
## OFF                   OFF

log4j.rootLogger=WARN, geoserverlogfile, stdout

log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%d{dd MMM HH:mm:ss} %p [%c] - %m%n

log4j.category.log4j=FATAL

log4j.appender.geoserverlogfile=org.apache.log4j.RollingFileAppender
# Keep three backup files.
log4j.appender.geoserverlogfile.MaxBackupIndex=3
# Pattern to output: date priority [category] - message
log4j.appender.geoserverlogfile.layout=org.apache.log4j.PatternLayout
log4j.appender.geoserverlogfile.layout.ConversionPattern=%d %p [%c] - %m%n


log4j.category.org.geotools=DEBUG
# Some more geotools loggers you may be interest in tweaking
log4j.category.org.geotools.factory=DEBUG
log4j.category.org.geotools.renderer=DEBUG
log4j.category.org.geotools.data=DEBUG
log4j.category.org.geotools.feature=DEBUG
log4j.category.org.geotools.filter=DEBUG
log4j.category.org.geotools.factory=DEBUG

# log4j.category.org.geotools=TRACE
# # Some more geotools loggers you may be interest in tweaking
# log4j.category.org.geotools.factory=TRACE
# log4j.category.org.geotools.renderer=DEBUG
# log4j.category.org.geotools.data=TRACE
# log4j.category.org.geotools.feature=TRACE
# log4j.category.org.geotools.filter=TRACE
# log4j.category.org.geotools.factory=TRACE

log4j.category.org.geoserver=INFO
log4j.category.org.vfny.geoserver=INFO

log4j.category.org.springframework=WARN

Back to the top