Package ai.vectros.core
Class LogConfig
java.lang.Object
ai.vectros.core.LogConfig
Configuration for SDK logging.
Use the builder to configure logging behavior:
LogConfig config = LogConfig.builder()
.level(LogLevel.DEBUG)
.silent(false)
.build();
Or with a custom logger:
LogConfig config = LogConfig.builder()
.level(LogLevel.DEBUG)
.logger(new MyCustomLogger())
.silent(false)
.build();
Defaults:
level—LogLevel.INFOlogger—ConsoleLogger(writes to stderr via java.util.logging)silent—true(no output unless explicitly enabled)
-
Nested Class Summary
Nested Classes -
Method Summary
-
Method Details
-
level
-
logger
-
silent
public boolean silent() -
builder
-