aboutsummaryrefslogtreecommitdiff
path: root/zenserver/experimental/usnjournal.cpp
Commit message (Collapse)AuthorAgeFilesLines
* timer: cleaned up Stopwatch, removed GetCpuTimerValueStefan Boberg2021-09-291-1/+1
|
* Removed WindowsException from public headersStefan Boberg2021-09-171-5/+5
|
* Changed logging implementationStefan Boberg2021-09-151-8/+8
| | | | | | * 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 Boberg2021-09-151-2/+1
| | | | easier to tweak implementation
* Fixed a number of unreferenced variable warningsStefan Boberg2021-09-091-0/+1
|
* Cleaned up exception handlingStefan Boberg2021-05-211-1/+4
| | | | We now use std::system_error where possible to report Win32 system errors. We still have WindowsException for general HRESULT based errors but we should phase it out where possible
* Adding zenservice codeStefan Boberg2021-05-111-0/+341