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/
18 lines
444 B
C++
18 lines
444 B
C++
/*
|
|
* Copyright (C) 2020-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0
|
|
*/
|
|
#pragma once
|
|
#include <seastar/util/log.hh>
|
|
|
|
// A test log to use in all unit tests, including boost unit
|
|
// tests. Built-in boost logging log levels do not allow to filter
|
|
// out unimportant messages, which then clutter xunit-format XML
|
|
// output, so are not used for anything profuse.
|
|
|
|
extern seastar::logger testlog;
|
|
|