| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Changed logging implementation | Stefan Boberg | 2021-09-15 | 1 | -3/+3 |
| | | | | | | | * Code should no longer directly `#include spdlog/spdlog.h`, instead use `#include <zencore/logging.h>` * Instead of explicit calls to `spdlog::info(...)` and such please use the logging macros defined in `zencore/logging.h`. I.e `ZEN_INFO`, `ZEN_DEBUG`, `ZEN_TRACE`, `ZEN_ERROR`, `ZEN_CRITITCAL` * The macros will pick up the "most local" logger via a `Log()` call to retrieve a logger instance. To override the default logger in a class please implement your own `Log()` function | ||||
| * | Changed direct includes of spdlog/spdlog.h into zencore/logging.h to make it ↵ | Stefan Boberg | 2021-09-15 | 1 | -1/+1 |
| | | | | | easier to tweak implementation | ||||
| * | Improved VFS feature toggle logic | Stefan Boberg | 2021-09-09 | 1 | -1/+1 |
| | | |||||
| * | Added compilation switch for vfs related code | Stefan Boberg | 2021-09-07 | 1 | -0/+1 |
| | | |||||
| * | Compile out experimental VFS code by default (not currently useful/functional) | Stefan Boberg | 2021-09-07 | 1 | -12/+14 |
| | | |||||
| * | Adding zenservice code | Stefan Boberg | 2021-05-11 | 1 | -0/+898 |