Github user ajs6f commented on a diff in the pull request: https://github.com/apache/jena/pull/95#discussion_r45618812 --- Diff: jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/Fuseki.java --- @@ -169,8 +169,14 @@ private static Metadata initMetadata() { /** Instance of log for config server messages. */ public static final Logger configLog = LoggerFactory.getLogger(configLogName) ; + /** Actual log file for cache server messages. */ + public static final String cacheLogName = PATH + ".Cache" ; + + /** Instance of log for cache server messages. */ + public static final Logger cacheLog = LoggerFactory.getLogger(cacheLogName) ; + /** Instance of log for config server message s */ - public static boolean verboseLogging = false ; + public static boolean verboseLogging = true ; --- End diff -- I don't think this default should be changed.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---