summaryrefslogtreecommitdiff
path: root/util/optime.h
diff options
context:
space:
mode:
authorDwight <dwight@10gen.com>2010-08-17 18:23:40 -0400
committerDwight <dwight@10gen.com>2010-08-17 18:23:40 -0400
commit22be11b4c2000f8876fe7681c8e58415b7755ef9 (patch)
treee84d10631e3bfe366fb6ab1b0f39549a690b102c /util/optime.h
parent75f728bb628bb3ed5e5f95512bf7fec95f6eb7ad (diff)
downloadmongo-22be11b4c2000f8876fe7681c8e58415b7755ef9.tar.gz
rs rollback better logging for errors 162
Diffstat (limited to 'util/optime.h')
-rw-r--r--util/optime.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/optime.h b/util/optime.h
index 46459686019..921447945d1 100644
--- a/util/optime.h
+++ b/util/optime.h
@@ -104,7 +104,7 @@ namespace mongo {
char buf[64];
time_t_to_String(secs, buf);
stringstream ss;
- ss << buf << ' ';
+ ss << time_t_to_String_short(secs) << ' ';
ss << hex << secs << ':' << i;
return ss.str();
}