Do not use scientific notations when printing doubles in logs.

Closes BIT-1558.
This commit is contained in:
Robin Sommer 2016-05-23 14:42:13 -07:00
parent 3581ead0d9
commit d86bf15dbf
7 changed files with 197 additions and 5 deletions

View file

@ -91,7 +91,7 @@ bool Ascii::Describe(ODesc* desc, threading::Value* val, const string& name) con
// Rendering via Add() truncates trailing 0s after the
// decimal point. The difference with TIME/INTERVAL is mainly
// to keep the log format consistent.
desc->Add(val->val.double_val);
desc->Add(val->val.double_val, true);
break;
case TYPE_INTERVAL: