aboutsummaryrefslogtreecommitdiff
path: root/src/debug.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/debug.cpp')
-rw-r--r--src/debug.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug.cpp b/src/debug.cpp
index 3b92131..8ef8797 100644
--- a/src/debug.cpp
+++ b/src/debug.cpp
@@ -163,7 +163,7 @@ void write(const char *s, const char *msg) {
void write(const double d, const char *msg) {
if (!is_debug_data_mode()) return;
- cout << std::setprecision(3) << d << ": " << msg << endl;
+ cout << std::setprecision(6) << d << ": " << msg << endl;
}
void write(const gsl_vector *v, const char *msg) {