summaryrefslogtreecommitdiffstats
path: root/kdesktop
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2013-09-07 18:27:24 -0500
committerDarrell Anderson <humanreadable@yahoo.com>2013-09-07 18:27:24 -0500
commitf123d99fd32a3eba6fc18c6c762db23fb5d431d6 (patch)
treecb177c172f43d7db1ded16ec769e7b9a2acb8641 /kdesktop
parent3e88ddfbc3df52c97d5354890fb9ac68af49bddd (diff)
downloadtdebase-f123d99fd32a3eba6fc18c6c762db23fb5d431d6.tar.gz
tdebase-f123d99fd32a3eba6fc18c6c762db23fb5d431d6.zip
Add source code module name to stdout/stderr messages to improve readability.
Diffstat (limited to 'kdesktop')
-rw-r--r--kdesktop/main.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/kdesktop/main.cc b/kdesktop/main.cc
index 0cff73420..4228df0c8 100644
--- a/kdesktop/main.cc
+++ b/kdesktop/main.cc
@@ -231,7 +231,7 @@ extern "C" KDE_EXPORT int kdemain( int argc, char **argv )
XRenderFindVisualFormat( dpy, xvi[i].visual );
if ( format->type == PictTypeDirect && format->direct.alphaMask ) {
visual = xvi[i].visual;
- kdDebug() << "found visual with alpha support" << endl;
+ kdDebug() << "[kdesktop] Found visual with alpha support" << endl;
argb_visual = true;
break;
}