Skip to content

Commit

Permalink
[OMON-634] Drop some initialistaion log messages (#309)
Browse files Browse the repository at this point in the history
  • Loading branch information
awegrzyn authored Dec 6, 2022
1 parent c717681 commit 792f4e3
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
1 change: 0 additions & 1 deletion src/Backends/StdOut.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ inline unsigned long StdOut::convertTimestamp(const std::chrono::time_point<std:
StdOut::StdOut(const std::string& prefix) : mPrefix(prefix)
{
setVerbosity(Verbosity::Debug);
MonLogger::Get(Severity::Info) << "StdOut backend initialized" << MonLogger::End();
}

void StdOut::addGlobalTag(std::string_view name, std::string_view value)
Expand Down
6 changes: 0 additions & 6 deletions src/Monitoring.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ void Monitoring::enableBuffering(const std::size_t size)
for (std::underlying_type<Verbosity>::type i = 0; i < static_cast<std::underlying_type<Verbosity>::type>(Verbosity::Debug); i++) {
mStorage[i].reserve(size);
}
MonLogger::Get() << "Buffering enabled (" << mStorage[0].capacity() << ")" << MonLogger::End();
}

void Monitoring::flushBuffer()
Expand Down Expand Up @@ -93,11 +92,6 @@ void Monitoring::enableProcessMonitoring(const unsigned int interval, std::vecto
mMonitorRunning = true;
mMonitorThread = std::thread(&Monitoring::pushLoop, this);
}
#ifdef O2_MONITORING_OS_LINUX
MonLogger::Get() << "Process Monitor : Automatic updates enabled" << MonLogger::End();
#else
MonLogger::Get() << "Process Monitor : Limited metrics available" << MonLogger::End();
#endif
}

void Monitoring::addHostnameTag()
Expand Down

0 comments on commit 792f4e3

Please sign in to comment.