Skip to content

Commit 079620d

Browse files
authored
Replace fatal log with severe log; we allow the application to continue running even when encountering those unexpected errors (sony#494)
1 parent a887498 commit 079620d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Development/nmos/control_protocol_utils.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1375,7 +1375,7 @@ namespace nmos
13751375
else
13761376
{
13771377
// should never happen
1378-
slog::log<slog::severities::fatal>(gate, SLOG_FLF) << "Invalid logic found in activate monitor oid: " << oid;
1378+
slog::log<slog::severities::severe>(gate, SLOG_FLF) << "Invalid logic found in activate monitor oid: " << oid;
13791379
}
13801380
return false;
13811381
}
@@ -1404,7 +1404,7 @@ namespace nmos
14041404
else
14051405
{
14061406
// should never happen
1407-
slog::log<slog::severities::fatal>(gate, SLOG_FLF) << "Invalid logic found in deactivate monitor oid: " << oid;
1407+
slog::log<slog::severities::severe>(gate, SLOG_FLF) << "Invalid logic found in deactivate monitor oid: " << oid;
14081408
}
14091409
return false;
14101410
}

0 commit comments

Comments
 (0)