mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
5c457ff486
* use std::source_location instead of godawful macros in logging * remove unused/absolutely haram af json logstream * fix bug in android logger where it doesn't respect eLogNone
10 lines
185 B
C++
10 lines
185 B
C++
#pragma once
|
|
|
|
#ifdef __cpp_lib_source_location
|
|
#include <source_location>
|
|
namespace slns = std;
|
|
#else
|
|
#include <experimental/source_location>
|
|
namespace slns = std::experimental;
|
|
#endif
|