From: guido Date: Wed, 2 Feb 2000 01:58:26 +0000 (+0000) Subject: time format changed X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=691a1a3ea44af72ce841914e7a45dc3087695f3c;p=dealii-svn.git time format changed git-svn-id: https://svn.dealii.org/trunk@2314 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/source/log.cc b/deal.II/base/source/log.cc index 2712707bcc..1b089c3d6f 100644 --- a/deal.II/base/source/log.cc +++ b/deal.II/base/source/log.cc @@ -116,7 +116,9 @@ LogStream::print_line_head() { if (print_utime) { + int p = std_out->width(5); *std_out << utime << ':'; + std_out->width(p); } *std_out << prefixes.top() << ':'; } @@ -125,7 +127,9 @@ LogStream::print_line_head() { if (print_utime) { + int p = file->width(6); *file << utime << ':'; + file->width(p); } *file << prefixes.top() << ':'; }