aboutsummaryrefslogtreecommitdiff
path: root/zenserver/experimental/usnjournal.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merged main.Per Larsson2021-12-141-7/+12
|\
| * Fixed use of undefined preprocessor macroMartin Ridgers2021-11-171-1/+2
| |
| * if-def'd out Windows specific featuresMartin Ridgers2021-10-291-0/+4
|/
* Added ZEN_THIRD_PARTY_INCLUDES_START to prevent compilation issuesStefan Boberg2021-10-201-0/+2
|
* 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