mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-20 00:20:47 +00:00
18 lines
444 B
C++
18 lines
444 B
C++
/*
|
|
* Copyright (C) 2020-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.1
|
|
*/
|
|
#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;
|
|
|