-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ClassicLilithEncoder shall implement Encoder<ILoggingEvent> #16
Comments
Good point. Wasn't aware of this. Thanks! |
Great, thank you!!! |
Not sure about the date of the next release. I want to fix another issue before performing it. |
I understand, I'll check the project's updates. |
The new version is out. |
Got it! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm trying to programmatically configure Logback to use a
RollingFileAppender
. Also I'd like to useClassicLilithEncoder
as encoder.Given that an
Appender
can be added to aLogger
with the following methodTherefore the type parameter of my
RollingFileAppender
must beILoggingEvent
.Unfortunately
ClassicLilithEncoder
implementsEncoder<LoggingEvent>
, so I cannot pass it to thesetEncoder(Encoder<ILoggingEvent>)
ofRollingFileAppender<ILoggingEvent>
.The text was updated successfully, but these errors were encountered: