Skip to content

Commit

Permalink
HBASE-27015. Fix log format for ServerManager (#4415)
Browse files Browse the repository at this point in the history
Signed-off-by: Viraj Jasani <vjasani@apache.org>
  • Loading branch information
tomscut committed May 8, 2022
1 parent 5d6c0a9 commit e8b44d9
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -1096,7 +1096,7 @@ public void loadLastFlushedSequenceIds() throws IOException {
Path lastFlushedSeqIdPath = new Path(rootDir, LAST_FLUSHED_SEQ_ID_FILE);
FileSystem fs = FileSystem.get(conf);
if (!fs.exists(lastFlushedSeqIdPath)) {
LOG.info("No .lastflushedseqids found at" + lastFlushedSeqIdPath
LOG.info("No .lastflushedseqids found at " + lastFlushedSeqIdPath
+ " will record last flushed sequence id"
+ " for regions by regionserver report all over again");
return;
Expand Down

0 comments on commit e8b44d9

Please sign in to comment.