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)
|
|
|
|
//
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \file
|
|
|
|
* C interface for managing the internal logging of TDLib.
|
|
|
|
* By default TDLib writes logs to stderr or an OS specific log and uses a verbosity level of 5.
|
2019-03-06 23:28:35 +01:00
|
|
|
* These functions are deprecated since TDLib 1.4.0 in favor of the setLogVerbosityLevel, setLogStream and
|
|
|
|
* other synchronous requests for managing the intrenal TDLib logging.
|
2018-12-31 20:04:05 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "td/telegram/tdjson_export.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the path to the file where the internal TDLib log will be written.
|
|
|
|
* By default TDLib writes logs to stderr or an OS specific log.
|
|
|
|
* Use this method to write the log to a file instead.
|
|
|
|
*
|
2019-03-06 23:28:35 +01:00
|
|
|
* \deprecated Use synchronous setLogStream request instead.
|
2018-01-24 16:45:57 +01:00
|
|
|
* \param[in] file_path Null-terminated path to a file where the internal TDLib log will be written.
|
|
|
|
* Use an empty path to switch back to the default logging behaviour.
|
2018-01-28 17:38:59 +01:00
|
|
|
* \return True 1 on success, or 0 otherwise, i.e. if the file can't be opened for writing.
|
2018-12-31 20:04:05 +01:00
|
|
|
*/
|
2019-03-06 23:28:35 +01:00
|
|
|
TDJSON_DEPRECATED_EXPORT int td_set_log_file_path(const char *file_path);
|
2018-01-09 10:40:56 +01:00
|
|
|
|
|
|
|
/**
|
2020-01-06 19:44:09 +01:00
|
|
|
* Sets the maximum size of the file to where the internal TDLib log is written before the file will be auto-rotated.
|
2018-01-09 10:40:56 +01:00
|
|
|
* Unused if log is not written to a file. Defaults to 10 MB.
|
|
|
|
*
|
2019-03-06 23:28:35 +01:00
|
|
|
* \deprecated Use synchronous setLogStream request instead.
|
2020-01-06 19:44:09 +01:00
|
|
|
* \param[in] max_file_size The maximum size of the file to where the internal TDLib log is written before the file
|
2018-01-09 10:40:56 +01:00
|
|
|
* will be auto-rotated. Should be positive.
|
|
|
|
*/
|
2019-03-06 23:28:35 +01:00
|
|
|
TDJSON_DEPRECATED_EXPORT void td_set_log_max_file_size(long long max_file_size);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the verbosity level of the internal logging of TDLib.
|
|
|
|
* By default the TDLib uses a log verbosity level of 5.
|
|
|
|
*
|
2019-03-06 23:28:35 +01:00
|
|
|
* \deprecated Use synchronous setLogVerbosityLevel request instead.
|
2018-12-31 20:04:05 +01:00
|
|
|
* \param[in] new_verbosity_level New value of logging verbosity level.
|
|
|
|
* Value 0 corresponds to fatal errors,
|
|
|
|
* value 1 corresponds to errors,
|
|
|
|
* value 2 corresponds to warnings and debug warnings,
|
|
|
|
* value 3 corresponds to informational,
|
|
|
|
* value 4 corresponds to debug,
|
|
|
|
* value 5 corresponds to verbose debug,
|
|
|
|
* value greater than 5 and up to 1024 can be used to enable even more logging.
|
|
|
|
*/
|
2019-03-06 23:28:35 +01:00
|
|
|
TDJSON_DEPRECATED_EXPORT void td_set_log_verbosity_level(int new_verbosity_level);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-01-24 16:45:57 +01:00
|
|
|
/**
|
|
|
|
* A type of callback function that will be called when a fatal error happens.
|
|
|
|
*
|
|
|
|
* \param error_message Null-terminated string with a description of a happened fatal error.
|
|
|
|
*/
|
2018-02-03 00:54:54 +01:00
|
|
|
typedef void (*td_log_fatal_error_callback_ptr)(const char *error_message);
|
2018-01-24 16:45:57 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the callback that will be called when a fatal error happens.
|
|
|
|
* None of the TDLib methods can be called from the callback.
|
|
|
|
* The TDLib will crash as soon as callback returns.
|
|
|
|
* By default the callback is not set.
|
|
|
|
*
|
|
|
|
* \param[in] callback Callback that will be called when a fatal error happens.
|
|
|
|
* Pass NULL to remove the callback.
|
|
|
|
*/
|
|
|
|
TDJSON_EXPORT void td_set_log_fatal_error_callback(td_log_fatal_error_callback_ptr callback);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} // extern "C"
|
|
|
|
#endif
|