mirror of
https://github.com/kirirururu/telebotxx.git
synced 2026-06-15 02:40:43 +00:00
12 lines
143 B
C++
12 lines
143 B
C++
#include <telebotxx/Logging.hpp>
|
|
|
|
namespace telebotxx {
|
|
|
|
bool debugMode = false;
|
|
|
|
void setDebugMode(bool enabled)
|
|
{
|
|
debugMode = enabled;
|
|
}
|
|
|
|
}
|