You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
349 B
21 lines
349 B
// License: Apache 2.0. See LICENSE file in root directory.
|
|
// Copyright(c) 2021 Intel Corporation. All Rights Reserved.
|
|
|
|
#include <iostream>
|
|
#include "test.h"
|
|
|
|
namespace test {
|
|
|
|
|
|
std::string context;
|
|
bool debug = false;
|
|
debug_logger log;
|
|
|
|
|
|
log_message::~log_message()
|
|
{
|
|
std::cout << '-' << char(_type) << "- " << _line.str() << std::endl;
|
|
}
|
|
|
|
}
|