diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-11-12 21:27:58 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-11-12 21:27:58 +0000 |
| commit | bb9d1f9e0f1aa818d1ac2145f05563e4c95d41b1 (patch) | |
| tree | 233a151d6d450edfba7a83c87a4901d551d888ba /src | |
| parent | 5b3e3df6c9352e31dd932a5af215eabbf2cf27c8 (diff) | |
Tweak logging format.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/log_entry.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/log_entry.cc b/src/lib/log_entry.cc index ea2d22462..d29b56747 100644 --- a/src/lib/log_entry.cc +++ b/src/lib/log_entry.cc @@ -43,7 +43,7 @@ LogEntry::get () const { SafeStringStream s; if (_type & TYPE_TIMING) { - s << _time.tv_sec << ":" << _time.tv_usec; + s << _time.tv_sec << ":" << _time.tv_usec << " "; } else { char buffer[64]; time_t const sec = _time.tv_sec; |
