mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-30 19:10:38 +00:00
12 lines
327 B
Java
12 lines
327 B
Java
package org.asamk.signal.logging;
|
|
|
|
import ch.qos.logback.classic.PatternLayout;
|
|
import ch.qos.logback.classic.spi.ILoggingEvent;
|
|
|
|
public class ScrubberPatternLayout extends PatternLayout {
|
|
|
|
@Override
|
|
public String doLayout(ILoggingEvent event) {
|
|
return Scrubber.scrub(super.doLayout(event)).toString();
|
|
}
|
|
}
|