mirror of
https://github.com/gabime/spdlog.git
synced 2025-01-28 00:10:21 +08:00
format
This commit is contained in:
parent
68ed281461
commit
fc3d18ed64
@ -9,7 +9,6 @@
|
|||||||
// Init levels from argv SPDLOG_LEVEL
|
// Init levels from argv SPDLOG_LEVEL
|
||||||
// Example: my_program.exe "SPDLOG_LEVEL=trace"
|
// Example: my_program.exe "SPDLOG_LEVEL=trace"
|
||||||
|
|
||||||
|
|
||||||
namespace spdlog {
|
namespace spdlog {
|
||||||
namespace cfg {
|
namespace cfg {
|
||||||
// search for SPDLOG_LEVEL= in the args and use it to init the levels
|
// search for SPDLOG_LEVEL= in the args and use it to init the levels
|
||||||
|
@ -41,9 +41,6 @@ namespace spdlog {
|
|||||||
private:
|
private:
|
||||||
std::unordered_map<std::string, spdlog::level::level_enum> levels_;
|
std::unordered_map<std::string, spdlog::level::level_enum> levels_;
|
||||||
spdlog::level::level_enum default_level_ = level::info;
|
spdlog::level::level_enum default_level_ = level::info;
|
||||||
|
|
||||||
};
|
};
|
||||||
} // namespace cfg
|
} // namespace cfg
|
||||||
} // namespace spdlog
|
} // namespace spdlog
|
||||||
|
|
||||||
|
|
||||||
|
@ -95,7 +95,6 @@ inline log_levels extract_levels_(const std::string &input)
|
|||||||
level = level::info;
|
level = level::info;
|
||||||
}
|
}
|
||||||
rv.set(logger_name, level);
|
rv.set(logger_name, level);
|
||||||
|
|
||||||
}
|
}
|
||||||
return rv;
|
return rv;
|
||||||
}
|
}
|
||||||
|
@ -30,7 +30,6 @@
|
|||||||
namespace spdlog {
|
namespace spdlog {
|
||||||
namespace details {
|
namespace details {
|
||||||
|
|
||||||
|
|
||||||
SPDLOG_INLINE registry::registry()
|
SPDLOG_INLINE registry::registry()
|
||||||
: formatter_(new pattern_formatter())
|
: formatter_(new pattern_formatter())
|
||||||
{
|
{
|
||||||
|
@ -28,7 +28,6 @@ class periodic_worker;
|
|||||||
class registry
|
class registry
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
||||||
registry(const registry &) = delete;
|
registry(const registry &) = delete;
|
||||||
registry &operator=(const registry &) = delete;
|
registry &operator=(const registry &) = delete;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user