Skip to content

Commit a7f46cc

Browse files
authored
Change log level from fatal to warning for initialization
1 parent 0840bb7 commit a7f46cc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Common/Core/MetadataHelper.cxx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,8 @@ std::string MetadataHelper::makeMetadataLabel() const
146146
std::string MetadataHelper::getO2Version() const
147147
{
148148
if (!mIsInitialized) {
149-
LOG(fatal) << "Metadata not initialized";
149+
LOG(warning) << "Metadata not initialized";
150+
return "undefined";
150151
}
151152
return get("O2Version");
152153
}

0 commit comments

Comments
 (0)