| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Changed `std::exception` into `std::runtime_error` since `std::exception` ↵ | Stefan Boberg | 2021-09-15 | 1 | -1/+1 |
| | | | | | does not have a constructor which accepts a string argument in the standard (this appears to be an MSVC implementation thing) | ||||
| * | Changed logging implementation | Stefan Boberg | 2021-09-15 | 1 | -1/+1 |
| | | | | | | | * 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 | -2/+4 |
| | | | | | easier to tweak implementation | ||||
| * | Added options for indicating a server is running in "dedicated" mode | Stefan Boberg | 2021-09-15 | 1 | -0/+1 |
| | | | | | I.e running on a host to serve *remote* clients | ||||
| * | Mesh should not default to on | Stefan Boberg | 2021-09-08 | 1 | -3/+3 |
| | | |||||
| * | Support for switching between storing derived data using the legacy DDC ↵ | Per Larsson | 2021-09-06 | 1 | -1/+11 |
| | | | | | endpoint and the Commmon Blob Store endpoint. | ||||
| * | Removed legacy key-value cache (may be reinstated in another form in the future) | Stefan Boberg | 2021-09-03 | 1 | -2/+0 |
| | | |||||
| * | Zen upstream support (#7) | Per Larsson | 2021-09-03 | 1 | -8/+122 |
| | | |||||
| * | Asynchronous upstream caching to Jupiter | Per Larsson | 2021-08-31 | 1 | -4/+12 |
| | | | | | Co-authored-by: Stefan Boberg <[email protected]> | ||||
| * | Improved crash reporting setup and removed old stubs | Stefan Boberg | 2021-08-21 | 1 | -0/+7 |
| | | | | | Also added ability to exercise crash reporting from command line | ||||
| * | Added support for defining test/non-test server environments | Stefan Boberg | 2021-08-06 | 1 | -1/+1 |
| | | |||||
| * | Made some changes to how mesh config works | Stefan Boberg | 2021-06-21 | 1 | -1/+9 |
| | | |||||
| * | Adding zenservice code | Stefan Boberg | 2021-05-11 | 1 | -0/+157 |