From f1923a7a199eaed28b7d8264c1e7c7c59a754df1 Mon Sep 17 00:00:00 2001 From: David Rose Date: Mon, 11 Jul 2005 23:35:22 +0000 Subject: [PATCH] more verbose write --- dtool/src/dtoolutil/pandaSystem.cxx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dtool/src/dtoolutil/pandaSystem.cxx b/dtool/src/dtoolutil/pandaSystem.cxx index 0552daf4c4..83a4cfe20c 100644 --- a/dtool/src/dtoolutil/pandaSystem.cxx +++ b/dtool/src/dtoolutil/pandaSystem.cxx @@ -311,8 +311,12 @@ output(ostream &out) const { //////////////////////////////////////////////////////////////////// void PandaSystem:: write(ostream &out) const { - out << *this << ":\n"; + out << *this << "\n" + << "compiled on " << get_build_date() << " by " + << get_distributor() << "\n" + << "with compiler " << PandaSystem::get_compiler() << "\n\n"; + out << "Optional systems:\n"; for (Systems::const_iterator si = _systems.begin(); si != _systems.end(); ++si) {