diff options
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/config.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/config.cc b/src/lib/config.cc index ba285fd2c..80598c7e9 100644 --- a/src/lib/config.cc +++ b/src/lib/config.cc @@ -142,10 +142,12 @@ void Config::read () { if (!have_existing ("config.xml")) { + cout << "No existing config.xml; creating chains.\n"; /* Make a new set of signing certificates and key */ _signer_chain = create_certificate_chain (); /* And similar for decryption of KDMs */ _decryption_chain = create_certificate_chain (); + cout << "Writing config.\n"; write (); return; } @@ -498,6 +500,7 @@ Config::drop () void Config::changed (Property what) { + cout << what << " changed in config.\n"; Changed (what); } |
