Jan_31_2024-Dev

This commit is contained in:
Ned Wright
2024-01-31 17:34:53 +00:00
parent 752a5785f0
commit 6d67818a94
376 changed files with 8101 additions and 7064 deletions

5
core/logging/logging.cc Executable file → Normal file
View File

@@ -98,7 +98,7 @@ public:
addStream(StreamType type) override
{
if (streams_preperation.find(type) != streams_preperation.end()) {
dbgWarning(D_REPORT)
dbgDebug(D_REPORT)
<< "Cannot add second instance of the same stream. Stream type: "
<< TagAndEnumManagement::convertToString(type);
return false;
@@ -119,7 +119,7 @@ public:
{
string log_type = TagAndEnumManagement::convertToString(type);
if (streams_preperation.find(type) != streams_preperation.end()) {
dbgWarning(D_REPORT)
dbgDebug(D_REPORT)
<< "Cannot add second instance of the same stream. Stream type: "
<< log_type;
return false;
@@ -319,6 +319,7 @@ LoggingComp::preload()
registerExpectedConfiguration<string>("Logging", "Log file name");
registerExpectedConfiguration<string>("Logging", "Log file line separator");
registerExpectedConfiguration<string>("Logging", "Fog Log URI");
registerExpectedConfiguration<string>("Logging", "K8sSvc Log host");
registerExpectedConfiguration<string>("Logging", "Syslog IP");
registerExpectedConfiguration<uint>("Logging", "Syslog port");
registerExpectedConfiguration<string>("Logging", "CEF IP");