This guide explains how TeamScape uses logging to monitor runtime behavior and help with debugging.
TeamScape uses the java.util.logging (JUL) package for logging, with a custom LogsCenter utility to manage loggers across the codebase.
Log messages are output to both:
logs/teamscape.log by default)The logging level (e.g., INFO, WARNING, SEVERE) can be configured via config.json.
For any class, you can create a logger like this:
private static final Logger logger = LogsCenter.getLogger(YourClassName.class);