Class BndLogger
- java.lang.Object
-
- org.apache.sling.scriptingbundle.plugin.bnd.BndLogger
-
-
Constructor Summary
Constructors Constructor Description BndLogger(aQute.service.reporter.Reporter reporter)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddebug(@NotNull String message)Log a debug message.voiderror(@NotNull String message)Log an error message.voiderror(@NotNull String message, @NotNull Throwable t)Log an error message, together with theThrowablethat caused it.voidinfo(@NotNull String message)Log an info message.voidwarn(@NotNull String message)Log a warning message.voidwarn(@NotNull String message, @NotNull Throwable t)Log a warning message, together with theThrowablethat caused it.
-
-
-
Method Detail
-
error
public void error(@NotNull @NotNull String message)Description copied from interface:LoggerLog an error message.
-
error
public void error(@NotNull @NotNull String message, @NotNull @NotNull Throwable t)Description copied from interface:LoggerLog an error message, together with theThrowablethat caused it.
-
info
public void info(@NotNull @NotNull String message)Description copied from interface:LoggerLog an info message.
-
warn
public void warn(@NotNull @NotNull String message)Description copied from interface:LoggerLog a warning message.
-
warn
public void warn(@NotNull @NotNull String message, @NotNull @NotNull Throwable t)Description copied from interface:LoggerLog a warning message, together with theThrowablethat caused it.
-
-