diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2013-09-07 18:27:24 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2013-09-07 18:27:24 -0500 |
commit | f123d99fd32a3eba6fc18c6c762db23fb5d431d6 (patch) | |
tree | cb177c172f43d7db1ded16ec769e7b9a2acb8641 /tdm | |
parent | 3e88ddfbc3df52c97d5354890fb9ac68af49bddd (diff) | |
download | tdebase-f123d99fd32a3eba6fc18c6c762db23fb5d431d6.tar.gz tdebase-f123d99fd32a3eba6fc18c6c762db23fb5d431d6.zip |
Add source code module name to stdout/stderr messages to improve readability.
Diffstat (limited to 'tdm')
-rw-r--r-- | tdm/kfrontend/kgapp.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tdm/kfrontend/kgapp.cpp b/tdm/kfrontend/kgapp.cpp index 9a765cb68..508717275 100644 --- a/tdm/kfrontend/kgapp.cpp +++ b/tdm/kfrontend/kgapp.cpp @@ -205,7 +205,7 @@ kg_main( const char *argv0 ) static char *argv[] = { (char *)"tdmgreet", 0 }; TDECmdLineArgs::init( 1, argv, *argv, 0, 0, 0, true ); - kdDebug() << timestamp() << "start" << endl; + kdDebug() << "[tdm-kfrontend] " << timestamp() << "start" << endl; kde_have_kipc = false; TDEApplication::disableAutoDcopRegistration(); TDECrash::setSafer( true ); @@ -279,7 +279,7 @@ kg_main( const char *argv0 ) if ( format->type == PictTypeDirect && format->direct.alphaMask ) { visual = xvi[i].visual; colormap = XCreateColormap( dpyi, RootWindow( dpyi, screen ), visual, AllocNone ); - kdDebug() << "found visual with alpha support" << endl; + kdDebug() << "[tdm-kfrontend] Found visual with alpha support" << endl; argb_visual_available = true; break; } @@ -387,7 +387,7 @@ kg_main( const char *argv0 ) GSendInt( G_Ready ); - kdDebug() << timestamp() << " main1" << endl; + kdDebug() << "[tdm-kfrontend] " << timestamp() << " main1" << endl; setCursor( dpy, app->desktop()->winId(), XC_left_ptr ); for (;;) { @@ -437,7 +437,7 @@ kg_main( const char *argv0 ) twin->kill(SIGKILL); } dialog = tgrt = new KThemedGreeter; - kdDebug() << timestamp() << " themed" << endl; + kdDebug() << "[tdm-kfrontend] " << timestamp() << " themed" << endl; if (!tgrt->isOK()) { is_themed = false; has_twin = has_twin_bkp; |