Changeset 86 for psi/trunk/src/tools/openpgp/gnupg.cpp
- Timestamp:
- 01/06/07 19:03:56 (20 months ago)
- Files:
-
- 1 modified
-
psi/trunk/src/tools/openpgp/gnupg.cpp (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
psi/trunk/src/tools/openpgp/gnupg.cpp
r2 r86 113 113 114 114 #ifdef GPG_DEBUG 115 printf("gpg bin=[%s]\n", bin.latin1());115 qDebug("### gpg bin=[%s]", bin.latin1()); 116 116 #endif 117 117 d = new Private(bin); … … 296 296 { 297 297 #ifdef GPG_DEBUG 298 printf("GnuPG initialization complete\n");299 printf(" Secret Keyring: [%s]\n", d->secretWatch.fileName().latin1());300 printf(" Public Keyring: [%s]\n", d->publicWatch.fileName().latin1());298 qDebug("### GnuPG initialization complete"); 299 qDebug("### Secret Keyring: [%s]", d->secretWatch.fileName().latin1()); 300 qDebug("### Public Keyring: [%s]", d->publicWatch.fileName().latin1()); 301 301 #endif 302 302 initFinished(b, err); … … 461 461 d->secretDirty = true; 462 462 #ifdef GPG_DEBUG 463 printf("Secret keys updated!\n");463 qDebug("### Secret keys updated!"); 464 464 #endif 465 465 } … … 467 467 d->publicDirty = true; 468 468 #ifdef GPG_DEBUG 469 printf("Public keys updated!\n");469 qDebug("### Public keys updated!"); 470 470 #endif 471 471 }
