the log.hh under the root of the tree was created keep the backward compatibility when seastar was extracted into a separate library. so log.hh should belong to `utils` directory, as it is based solely on seastar, and can be used all subsystems. in this change, we move log.hh into utils/log.hh to that it is more modularized. and this also improves the readability, when one see `#include "utils/log.hh"`, it is obvious that this source file needs the logging system, instead of its own log facility -- please note, we do have two other `log.hh` in the tree. Signed-off-by: Kefu Chai <kefu.chai@scylladb.com>
37 lines
689 B
C++
37 lines
689 B
C++
/*
|
|
* Copyright (C) 2014-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <seastar/util/log.hh>
|
|
|
|
namespace logging {
|
|
|
|
//
|
|
// Seastar changed the names of some of these types. Maintain the old names here to avoid too much churn.
|
|
//
|
|
|
|
using log_level = seastar::log_level;
|
|
using logger = seastar::logger;
|
|
using registry = seastar::logger_registry;
|
|
|
|
inline registry& logger_registry() noexcept {
|
|
return seastar::global_logger_registry();
|
|
}
|
|
|
|
using settings = seastar::logging_settings;
|
|
|
|
inline void apply_settings(const settings& s) {
|
|
seastar::apply_logging_settings(s);
|
|
}
|
|
|
|
using seastar::pretty_type_name;
|
|
using seastar::level_name;
|
|
|
|
}
|