summaryrefslogtreecommitdiff
path: root/util/log.h
diff options
context:
space:
mode:
authorAlberto Lerner <alerner@10gen.com>2010-07-19 09:56:24 -0400
committerAlberto Lerner <alerner@10gen.com>2010-07-19 09:56:24 -0400
commitf51a4d0669bf413d34e93c9a1c792f94edfdd757 (patch)
tree5688825fa9a97a6871f296e5b0dbddcaf6890366 /util/log.h
parentd0d79d0fbf732f81bf0268be757a03af8864f286 (diff)
downloadmongo-f51a4d0669bf413d34e93c9a1c792f94edfdd757.tar.gz
SERVER-1270 Hook StringData to BufBuilder
Diffstat (limited to 'util/log.h')
-rw-r--r--util/log.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/log.h b/util/log.h
index 1be5d275193..268531274dd 100644
--- a/util/log.h
+++ b/util/log.h
@@ -172,7 +172,7 @@ namespace mongo {
if ( doneSetup == 1717 ) {
BufBuilder b(512);
time_t_to_String( time(0) , b.grow(20) );
- b.append( ss.str() );
+ b.appendStr( ss.str() );
const char *s = b.buf();
string threadName = getThreadName();