Log versions on Td instance creation.
This commit is contained in:
parent
7dbee21918
commit
9c49e6a625
@ -95,6 +95,7 @@
|
||||
#include "td/telegram/TopDialogCategory.h"
|
||||
#include "td/telegram/TopDialogManager.h"
|
||||
#include "td/telegram/UpdatesManager.h"
|
||||
#include "td/telegram/Version.h"
|
||||
#include "td/telegram/VideoNotesManager.h"
|
||||
#include "td/telegram/VideosManager.h"
|
||||
#include "td/telegram/VoiceNotesManager.h"
|
||||
@ -3001,6 +3002,8 @@ class SetBackgroundRequest : public RequestActor<> {
|
||||
Td::Td(unique_ptr<TdCallback> callback, Options options)
|
||||
: callback_(std::move(callback)), td_options_(std::move(options)) {
|
||||
CHECK(callback_ != nullptr);
|
||||
LOG(INFO) << "Create Td with layer " << MTPROTO_LAYER << ", database version " << current_db_version()
|
||||
<< " and version " << static_cast<int32>(Version::Next) - 1;
|
||||
}
|
||||
|
||||
Td::~Td() = default;
|
||||
|
Loading…
Reference in New Issue
Block a user