mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-10 05:03:26 +01:00
easylogging++: avoid creating directory/filename for the builtin default log file
This commit is contained in:
parent
2836284798
commit
0af5d16872
2
external/easylogging++/easylogging++.h
vendored
2
external/easylogging++/easylogging++.h
vendored
@ -3182,6 +3182,8 @@ namespace base {
|
||||
}
|
||||
|
||||
void insertFile(Level level, const std::string& fullFilename) {
|
||||
if (fullFilename.empty())
|
||||
return;
|
||||
std::string resolvedFilename = resolveFilename(fullFilename);
|
||||
if (resolvedFilename.empty()) {
|
||||
std::cerr << "Could not load empty file for logging, please re-check your configurations for level ["
|
||||
|
Loading…
Reference in New Issue
Block a user