diff -r b78fa4cdbf2b -r 106a4bfcb866 example/AuthApp/main.cpp --- a/example/AuthApp/main.cpp Thu Aug 05 16:35:33 2010 +0530 +++ b/example/AuthApp/main.cpp Thu Aug 05 16:46:37 2010 +0530 @@ -33,9 +33,42 @@ #include #include +void debugOutput(QtMsgType type, const char *msg) + { + QFile logFile("c://data//FaceBookLog.txt"); + Q_ASSERT(logFile.open( QIODevice::WriteOnly | QIODevice::Text | QIODevice::Append )); + QTextStream stream(&logFile); + + switch (type) + { + case QtDebugMsg: + stream<