We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c6e0b4 commit 3f45ec7Copy full SHA for 3f45ec7
src/Handler.cpp
@@ -52,6 +52,12 @@ bool Handler::Initialize( ini_t* config )
52
53
bool Handler::Fetch( bool first )
54
{
55
+ if( !first )
56
+ {
57
+ std::lock_guard lock( m_stdoutLock );
58
+ printf( BOLDWHITE " [" YELLOW "i" BOLDWHITE "] " BOLDMAGENTA "%s" RESET " Feed refresh\n", m_unit );
59
+ fflush( stdout );
60
+ }
61
const auto status = FetchImpl( first );
62
if( status )
63
0 commit comments