tdlib / td

Cross-platform library for building Telegram clients
https://core.telegram.org/tdlib
Boost Software License 1.0
7.11k stars 1.44k forks source link

Logging to a terminal and to a file #2729

Closed fat-complex closed 10 months ago

fat-complex commented 10 months ago

I've already asked about your journaling. I really like it. Question: is it possible to use LOG(INFO) and so on to output simultaneously to a file and to a terminal?

levlam commented 10 months ago

Yes. You need to set up https://github.com/tdlib/td/blob/master/tdutils/td/utils/CombinedLog.h as a logger.

fat-complex commented 10 months ago

Thx)