Files
scylladb/utils/log.hh
Avi Kivity 0ae22a09d4 LICENSE: Update to version 1.1
Updated terms of non-commercial use (must be a never-customer).
2026-04-12 19:46:33 +03:00

37 lines
712 B
C++

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