[PC-BSD Commits] r21574 - pcbsd-projects/PCDM
svn at pcbsd.org
svn at pcbsd.org
Fri Feb 15 18:12:13 PST 2013
Author: kenmoore
Date: 2013-02-16 02:12:12 +0000 (Sat, 16 Feb 2013)
New Revision: 21574
Modified:
pcbsd-projects/PCDM/pcdm-gui.cpp
Log:
Add some more debugging to the login process
Modified: pcbsd-projects/PCDM/pcdm-gui.cpp
===================================================================
--- pcbsd-projects/PCDM/pcdm-gui.cpp 2013-02-16 02:10:38 UTC (rev 21573)
+++ pcbsd-projects/PCDM/pcdm-gui.cpp 2013-02-16 02:12:12 UTC (rev 21574)
@@ -220,12 +220,14 @@
bool success = Backend::startUserLogin(username, password, binary);
qDebug() << "Login Status:" << success;
if(success){
+ qDebug() << "Starting Login process";
emit xUserFound(username);
emit xCmdFound(binary);
emit xHomeFound( Backend::getUserHomeDir(username) );
emit xSessionStart(); //start the desktop environment
slotClosePCDM(); //now start to close down the PCDM GUI
}else{
+ qDebug() << "Failed Login Attempt";
pwline->setText("");
//Display an info box that the login failed
QMessageBox notice(this);
More information about the Commits
mailing list