ロギングにPantheiosライブラリを使用しています。私は持っています:
pantheios::log(pantheios::debug, "I'm debug");
pantheios::log(pantheios::informational, "Some info");
どの出力:
[MyApplication, Jun 14 15:45:26.549; Debug] : I'm debug
[MyApplication.1, Jun 14 15:45:26.549; Informational] : Some info
しかし、表示情報とデバッグのどちらかを選択したいと思います。
set_level(pantheios::informational) //what should this be ?
pantheios::log(pantheios::debug, "I'm debug");
pantheios::log(pantheios::informational, "Some info");
どの出力:
[MyApplication.1, Jun 14 15:45:26.549; Informational] : Some info