Add source code module name to stdout/stderr messages to improve readability.

pull/16/head
Darrell Anderson 11 years ago
parent e757d3d6ae
commit a53b185855

@ -206,7 +206,7 @@ static TDELockFile::LockResult deleteStaleLock(const TQString &lockFile, KDE_str
if ((KDE_lstat(lckFile, &st_buf2) == 0) && statResultIsEqual(st_buf1, st_buf2)) if ((KDE_lstat(lckFile, &st_buf2) == 0) && statResultIsEqual(st_buf1, st_buf2))
{ {
// - - if yes, delete lock file, delete temp file, retry lock // - - if yes, delete lock file, delete temp file, retry lock
tqWarning("WARNING: deleting stale lockfile %s", lckFile.data()); tqWarning("[tdecore] Deleting stale lockfile %s", lckFile.data());
::unlink(lckFile); ::unlink(lckFile);
::unlink(tmpFile); ::unlink(tmpFile);
return TDELockFile::LockOK; return TDELockFile::LockOK;
@ -224,14 +224,14 @@ static TDELockFile::LockResult deleteStaleLock(const TQString &lockFile, KDE_str
statResultIsEqual(st_buf, st_buf2)) statResultIsEqual(st_buf, st_buf2))
{ {
// Without support for link counts we will have a little race condition // Without support for link counts we will have a little race condition
tqWarning("WARNING: deleting stale lockfile %s", lckFile.data()); tqWarning("[tdecore] Deleting stale lockfile %s", lckFile.data());
::unlink(lckFile); ::unlink(lckFile);
::unlink(tmpFile); ::unlink(tmpFile);
return TDELockFile::LockOK; return TDELockFile::LockOK;
} }
// Failed to delete stale lock file // Failed to delete stale lock file
tqWarning("WARNING: Problem deleting stale lockfile %s", lckFile.data()); tqWarning("[tdecore] WARNING: Problem deleting stale lockfile %s", lckFile.data());
::unlink(tmpFile); ::unlink(tmpFile);
return TDELockFile::LockFail; return TDELockFile::LockFail;
} }

Loading…
Cancel
Save