Files
scylladb/utils/log.hh
Avi Kivity f3eade2f62 treewide: relicense to ScyllaDB-Source-Available-1.0
Drop the AGPL license in favor of a source-available license.
See the blog post [1] for details.

[1] https://www.scylladb.com/2024/12/18/why-were-moving-to-a-source-available-license/
2024-12-18 17:45:13 +02:00

37 lines
712 B
C++

/*
* Copyright (C) 2014-present ScyllaDB
*/
/*
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0
*/
#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;
}