Skip to content

Commit 83fc90b

Browse files
Yi Wufacebook-github-bot
authored andcommitted
Fix info log source file display length (facebook#5824)
Summary: Source code path in info log is not truncated to the correct length. Fixing it. Pull Request resolved: facebook#5824 Test Plan: Build and run db_bench. Before: ``` 2019/09/18-21:32:34.631181 7fdd42df6700 [_impl/db_impl_write.cc:1654] [default] New memtable created with log file: facebook#9. Immutable memtables: 0. ``` After: ``` 2019/09/18-21:36:09.226532 7f141b5f6700 [/db_impl/db_impl_write.cc:1654] [default] New memtable created with log file: facebook#9. Immutable memtables: 0. ``` Reviewed By: cheng-chang Differential Revision: D17511851 fbshipit-source-id: b2f92c85ce78726c27b7e0e736657fe2f983513e
1 parent 94f90ac commit 83fc90b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

logging/logging.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919

2020
inline const char* RocksLogShorterFileName(const char* file)
2121
{
22-
// 15 is the length of "logging/logging.h".
22+
// 18 is the length of "logging/logging.h".
2323
// If the name of this file changed, please change this number, too.
24-
return file + (sizeof(__FILE__) > 15 ? sizeof(__FILE__) - 15 : 0);
24+
return file + (sizeof(__FILE__) > 18 ? sizeof(__FILE__) - 18 : 0);
2525
}
2626

2727
// Don't inclide file/line info in HEADER level

0 commit comments

Comments
 (0)