summaryrefslogtreecommitdiffstats
path: root/konsole/konsole
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2013-10-03 16:12:15 -0500
committerDarrell Anderson <humanreadable@yahoo.com>2013-10-03 16:12:15 -0500
commit6f7fabab870b836b111ca65cb2bef65b7bf820f9 (patch)
tree4d184c31977404226209c9ff922e80699d82538d /konsole/konsole
parent9ebb7ce7ea200500631981a4cc85cbd1b8c72f51 (diff)
downloadtdebase-6f7fabab870b836b111ca65cb2bef65b7bf820f9.tar.gz
tdebase-6f7fabab870b836b111ca65cb2bef65b7bf820f9.zip
Add source code module name to stdout/stderr messages to improve readability.
Diffstat (limited to 'konsole/konsole')
-rw-r--r--konsole/konsole/TEPty.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/konsole/konsole/TEPty.cpp b/konsole/konsole/TEPty.cpp
index 1efcd214d..2148ec03c 100644
--- a/konsole/konsole/TEPty.cpp
+++ b/konsole/konsole/TEPty.cpp
@@ -115,12 +115,12 @@ void TEPty::setErase(char erase)
if(tcgetattr(fd, &tios))
{
- tqWarning("Uh oh.. can't get terminal attributes..");
+ tqWarning("[Konsole-TEPty] Uh oh.. can't get terminal attributes..");
return;
}
tios.c_cc[VERASE] = erase;
if(tcsetattr(fd, TCSANOW, &tios))
- tqWarning("Uh oh.. can't set terminal attributes..");
+ tqWarning("[Konsole-TEPty] Uh oh.. can't set terminal attributes..");
}
/*!
@@ -217,7 +217,7 @@ void TEPty::doSendJobs() {
SendJob& job = pendingSendJobs.first();
if (!writeStdin(job.buffer.data(), job.length))
{
- tqWarning("Uh oh.. can't write data..");
+ tqWarning("[Konsole-TEPty] Uh oh.. can't write data..");
return;
}
m_bufferFull = true;