light: remove wrong err msg

This commit is contained in:
Thomas Schoebel-Theuer 2014-03-18 09:54:57 +01:00 committed by Thomas Schoebel-Theuer
parent 9d86cb679b
commit 2a3e59ba93
1 changed files with 2 additions and 0 deletions

View File

@ -3201,6 +3201,8 @@ int make_log_finalize(struct mars_global *global, struct mars_dent *dent)
if (trans_brick->replay_mode) {
if (trans_brick->replay_code > 0) {
MARS_INF_TO(rot->log_say, "logfile replay ended successfully\n");
} else if (trans_brick->replay_code == -EAGAIN) {
MARS_INF_TO(rot->log_say, "logfile replay stopped intermediately\n");
} else if (trans_brick->replay_code < 0) {
MARS_ERR_TO(rot->log_say, "logfile replay stopped with error = %d\n", trans_brick->replay_code);
}