2026-03-17 13:31:18 -07:00

82 lines
1.8 KiB
Java

/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* com.tridium.crypto.core.util.ILogger
* javax.baja.log.Log
*/
package com.tridium.platcrypto.util;
import com.tridium.crypto.core.util.ILogger;
import javax.baja.log.Log;
/*
* Illegal identifiers - consider using --renameillegalidents true
*/
public class Logger
implements ILogger {
private Log log;
public void error(String string) {
this.log.error(string);
}
public void error(String string, Throwable throwable) {
this.log.error(string, throwable);
}
public void warning(String string) {
this.log.warning(string);
}
public void warning(String string, Throwable throwable) {
this.log.warning(string, throwable);
}
public void message(String string) {
this.log.message(string);
}
public void message(String string, Throwable throwable) {
this.log.message(string, throwable);
}
public void trace(String string) {
this.log.trace(string);
}
public void trace(String string, Throwable throwable) {
this.log.trace(string, throwable);
}
public void trace(byte[] byArray) {
this.log.trace(byArray);
}
public void trace(byte[] byArray, int n, int n2) {
this.log.trace(byArray, n, n2);
}
public void trace(String string, byte[] byArray) {
this.log.trace(string, byArray);
}
public void trace(String string, byte[] byArray, int n, int n2) {
this.log.trace(string, byArray, n, n2);
}
public boolean isTraceOn() {
return this.log.isTraceOn();
}
private final /* synthetic */ void this() {
this.log = null;
}
public Logger(Log log) {
this.this();
this.log = log;
}
}