Browse Source

more verbose write

David Rose 20 years ago
parent
commit
f1923a7a19
1 changed files with 5 additions and 1 deletions
  1. 5 1
      dtool/src/dtoolutil/pandaSystem.cxx

+ 5 - 1
dtool/src/dtoolutil/pandaSystem.cxx

@@ -311,8 +311,12 @@ output(ostream &out) const {
 ////////////////////////////////////////////////////////////////////
 ////////////////////////////////////////////////////////////////////
 void PandaSystem::
 void PandaSystem::
 write(ostream &out) const {
 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();
   for (Systems::const_iterator si = _systems.begin();
        si != _systems.end();
        si != _systems.end();
        ++si) {
        ++si) {