Skip to content

Commit

Permalink
Fix invalid error log format.
Browse files Browse the repository at this point in the history
  • Loading branch information
timw authored and tglman committed Aug 24, 2022
1 parent 9e7b4f2 commit cece343
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ public void truncate() throws IOException {
OLogManager.instance()
.errorNoDb(
this,
"Can not delete segment of double write log - %d in storage %s",
"Can not delete segment of double write log - %s in storage %s",
e,
segment,
storageName);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2782,7 +2782,7 @@ public void installNewDatabasesFromCluster() {
null,
DIRECTION.IN,
"Error on installing database '%s' on local node (error=%s)",
e,
e,
databaseName,
e.toString());
}
Expand Down

0 comments on commit cece343

Please sign in to comment.