summaryrefslogtreecommitdiffstats
path: root/src/util/util.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/util.cpp')
-rwxr-xr-xsrc/util/util.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/util/util.cpp b/src/util/util.cpp
index 8b25b12..05a209f 100755
--- a/src/util/util.cpp
+++ b/src/util/util.cpp
@@ -213,7 +213,7 @@ QString getUserName()
#endif //#ifdef __WIN32__
if (username.isEmpty())
{
- printf("USERNAME COULDNT BE RETRIEVED!\n");
+ qDebug("USERNAME COULDNT BE RETRIEVED!");
username = QString("USERNAMEERROR");
}
return username;
@@ -323,7 +323,7 @@ QString readPassFromPassFile()
}
bool getAllowed()
{
- printf("Checking %s\n", getPolicyFilePath(QString(".allow")).toUtf8().data());
+ qDebug("Checking %s", qPrintable(getPolicyFilePath(QString(".allow"))));
TextFile file(getPolicyFilePath(".allow"));
if (file.good()) // should have been checked via exists before, but better be safe
{
@@ -338,7 +338,7 @@ bool getAllowed()
(allowed.compare(QString("TRUE")) == 0) )
return true;
}
- printf("...negative\n");
+ qDebug("...negative");
return false;
}