diff options
| author | ilotterytea <iltsu@alright.party> | 2024-05-17 23:23:37 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2024-05-17 23:23:37 +0500 |
| commit | 646ca655501dace981001843289d896657ee6b82 (patch) | |
| tree | a657b0f383d0dc7c3881d3eb8427313d982f9523 /src/stream.cpp | |
| parent | 68f981047c8cec031f55b5ee571c25b9ccd1fcd9 (diff) | |
upd: replaced cout with log + removed unused #include
Diffstat (limited to 'src/stream.cpp')
| -rw-r--r-- | src/stream.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/stream.cpp b/src/stream.cpp index ad7df68..818d4de 100644 --- a/src/stream.cpp +++ b/src/stream.cpp @@ -11,6 +11,7 @@ #include "api/twitch/schemas/stream.hpp" #include "config.hpp" +#include "logger.hpp" #include "schemas/stream.hpp" #include "utils/string.hpp" @@ -180,6 +181,9 @@ namespace bot::stream { continue; } + log::info("TwitchStreamListener", + "Listening stream events for ID " + std::to_string(id)); + this->ids.push_back(id); } |
