2018-12-31 20:04:05 +01:00
|
|
|
//
|
2020-01-01 02:23:48 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2020
|
2018-12-31 20:04:05 +01:00
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
|
|
|
#include "td/telegram/td_log.h"
|
|
|
|
|
|
|
|
#include "td/telegram/Log.h"
|
|
|
|
|
2018-01-24 16:45:57 +01:00
|
|
|
#include <cstdint>
|
|
|
|
|
2018-01-28 17:38:59 +01:00
|
|
|
int td_set_log_file_path(const char *file_path) {
|
|
|
|
return static_cast<int>(td::Log::set_file_path(file_path == nullptr ? "" : file_path));
|
2018-01-09 10:40:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void td_set_log_max_file_size(long long max_file_size) {
|
|
|
|
td::Log::set_max_file_size(static_cast<std::int64_t>(max_file_size));
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void td_set_log_verbosity_level(int new_verbosity_level) {
|
|
|
|
td::Log::set_verbosity_level(new_verbosity_level);
|
|
|
|
}
|
2018-01-24 16:45:57 +01:00
|
|
|
|
|
|
|
void td_set_log_fatal_error_callback(td_log_fatal_error_callback_ptr callback) {
|
|
|
|
td::Log::set_fatal_error_callback(callback);
|
|
|
|
}
|