summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2007-04-27 10:09:23 +0000
committerJohn Wiegley <johnw@newartisans.com>2008-04-13 03:38:32 -0400
commitc910ed7c836a6cb82ad1798fd13d630040c80262 (patch)
tree2260b2db2dba82bf4818aa69a2c4ba14328cc05f
parent4db6d4535f57413eff7ae5a0c9475ae9b4ec4fb4 (diff)
downloadledger-c910ed7c836a6cb82ad1798fd13d630040c80262.tar.gz
ledger-c910ed7c836a6cb82ad1798fd13d630040c80262.tar.bz2
ledger-c910ed7c836a6cb82ad1798fd13d630040c80262.zip
Report ledger shutting down even if verify is not being used.
-rw-r--r--session.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/session.cc b/session.cc
index bced1f75..3d22da7b 100644
--- a/session.cc
+++ b/session.cc
@@ -216,8 +216,10 @@ void shutdown()
amount_t::shutdown();
IF_VERIFY() {
- INFO("Ledger shutdown (Boost and libstdc++ may hold memory)");
+ INFO("Ledger has shutdown (Boost and libstdc++ may hold memory)");
shutdown_memory_tracing();
+ } else {
+ INFO("Ledger has shutdown");
}
}