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 void
debug(@NotNull String message)
Log a debug message.void
error(@NotNull String message)
Log an error message.void
error(@NotNull String message, @NotNull Throwable t)
Log an error message, together with theThrowable
that caused it.void
info(@NotNull String message)
Log an info message.void
warn(@NotNull String message)
Log a warning message.void
warn(@NotNull String message, @NotNull Throwable t)
Log a warning message, together with theThrowable
that caused it.
-
-
-
Method Detail
-
error
public void error(@NotNull @NotNull String message)
Description copied from interface:Logger
Log an error message.
-
error
public void error(@NotNull @NotNull String message, @NotNull @NotNull Throwable t)
Description copied from interface:Logger
Log an error message, together with theThrowable
that caused it.
-
info
public void info(@NotNull @NotNull String message)
Description copied from interface:Logger
Log an info message.
-
warn
public void warn(@NotNull @NotNull String message)
Description copied from interface:Logger
Log a warning message.
-
warn
public void warn(@NotNull @NotNull String message, @NotNull @NotNull Throwable t)
Description copied from interface:Logger
Log a warning message, together with theThrowable
that caused it.
-
-