Skip to content

Commit 792f4e3

Browse files
authored
[OMON-634] Drop some initialistaion log messages (#309)
1 parent c717681 commit 792f4e3

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

src/Backends/StdOut.cxx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ inline unsigned long StdOut::convertTimestamp(const std::chrono::time_point<std:
4444
StdOut::StdOut(const std::string& prefix) : mPrefix(prefix)
4545
{
4646
setVerbosity(Verbosity::Debug);
47-
MonLogger::Get(Severity::Info) << "StdOut backend initialized" << MonLogger::End();
4847
}
4948

5049
void StdOut::addGlobalTag(std::string_view name, std::string_view value)

src/Monitoring.cxx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ void Monitoring::enableBuffering(const std::size_t size)
5050
for (std::underlying_type<Verbosity>::type i = 0; i < static_cast<std::underlying_type<Verbosity>::type>(Verbosity::Debug); i++) {
5151
mStorage[i].reserve(size);
5252
}
53-
MonLogger::Get() << "Buffering enabled (" << mStorage[0].capacity() << ")" << MonLogger::End();
5453
}
5554

5655
void Monitoring::flushBuffer()
@@ -93,11 +92,6 @@ void Monitoring::enableProcessMonitoring(const unsigned int interval, std::vecto
9392
mMonitorRunning = true;
9493
mMonitorThread = std::thread(&Monitoring::pushLoop, this);
9594
}
96-
#ifdef O2_MONITORING_OS_LINUX
97-
MonLogger::Get() << "Process Monitor : Automatic updates enabled" << MonLogger::End();
98-
#else
99-
MonLogger::Get() << "Process Monitor : Limited metrics available" << MonLogger::End();
100-
#endif
10195
}
10296

10397
void Monitoring::addHostnameTag()

0 commit comments

Comments
 (0)