Yobi supports logging of system messages for operators and Yobi programmers. Yobi writes the logs to the log files in `logs` directory and standard output. Log Files --------- Unless you modified the logging configuration, logs are written to these files: * Application logs - `logs/application.log` * Access logs - `logs/access.log` * All logs - `logs/root.log` Every log which is written to `root.log` also written to standard output, but the formats can be differ. See `conf/application-logger.xml`, the configuration for logging, for the difference between two formats. Loggin Configuration -------------------- You can configure logging in `conf/application-logger.xml`. See LOGBack Document [1] for details about logging configuration. Note: PlayFramework allows to configure logging also in `conf/application.conf`. But Yobi uses `conf/application-logger.xml` for more detailed configuration. If there is a difference between the two configurtaion files, Yobi may works incorrectly. Use `conf/application-logger.xml` only for logging configuration. Log Levels ----------
Log level | Description |
ERROR | Yobi met an abnormal situation and might work incorrectly. |
WARNING | Yobi met an abnormal situation and recovered or ignored it, but probably work correctly. |
INFO | Diagnostic information for operators and Yobi programmers |
DEBUG | Information for debugging |
TRACE | Not used |