mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Make log partitions case-insensitive
This commit is contained in:
committed by
Vinnie Falco
parent
0215a7400d
commit
81a426608a
@@ -21,11 +21,12 @@
|
||||
#define RIPPLE_BASICS_LOG_H_INCLUDED
|
||||
|
||||
#include <ripple/common/UnorderedContainers.h>
|
||||
#include <beast/utility/ci_char_traits.h>
|
||||
#include <beast/utility/Journal.h>
|
||||
#include <beast/utility/noexcept.h>
|
||||
#include <boost/filesystem.hpp>
|
||||
#include <map>
|
||||
#include <mutex>
|
||||
#include <unordered_map>
|
||||
#include <utility>
|
||||
|
||||
namespace ripple {
|
||||
@@ -140,7 +141,7 @@ private:
|
||||
};
|
||||
|
||||
std::mutex mutable mutex_;
|
||||
hardened_hash_map <std::string, Sink> sinks_;
|
||||
std::map <std::string, Sink, beast::ci_less> sinks_;
|
||||
beast::Journal::Severity level_;
|
||||
File file_;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user