log libzypp version in ZYppImpl ctor.
authorMichael Andres <ma@suse.de>
Wed, 22 Oct 2008 15:20:56 +0000 (15:20 +0000)
committerMichael Andres <ma@suse.de>
Wed, 22 Oct 2008 15:20:56 +0000 (15:20 +0000)
zypp/zypp_detail/ZYppImpl.cc

index d6315ed..22827b0 100644 (file)
@@ -43,8 +43,10 @@ namespace zypp
     : _target(0)
     , _resolver( new Resolver( ResPool::instance()) )
     {
+      MIL << "libzypp: " << VERSION << " built " << __DATE__ << " " <<  __TIME__ << endl;
+      MIL << "defaultTextLocale: '" << ZConfig::instance().textLocale() << "'" << endl;
+      MIL << "System architecture is '" << ZConfig::instance().systemArchitecture() << "'" << endl;
       MIL << "Initializing keyring..." << std::endl;
-      //_keyring = new KeyRing(homePath() + Pathname("/keyring/all"), homePath() + Pathname("/keyring/trusted"));
       _keyring = new KeyRing(tmpPath());
     }