bootique / bootique-logback

Provides Logback integration with Bootique
http://bootique.io
Apache License 2.0
6 stars 10 forks source link

"LOGBACK: No context given for c.q.l.core.rolling.SizeAndTimeBasedRollingPolicy" printed #52

Closed andrus closed 3 years ago

andrus commented 4 years ago

Seeing this on stdout for certain log configs. This is Bootique 2.0-SNAPSHOT and Java 11:

LOGBACK: No context given for c.q.l.core.rolling.SizeAndTimeBasedRollingPolicy@1552400354

Log config (from -Dbq.trace, logger and logFormat configs omitted) :

{"log": {
    "appenders":[{
            "type":"file",
            "file":"../logs/app.log",
            "rollingPolicy": {
                "type":"sizeAndTime",
                "fileNamePattern":"../logs/app-%d{yyyy-MM-dd}.%i.log",
                "historySize":10,
                "fileSize":"200MB",
                "totalSize":"2000MB"}
        }]
}}