summaryrefslogtreecommitdiff
path: root/server/util/debug.c
AgeCommit message (Collapse)AuthorFilesLines
2009-12-03Raise debug log level for LDB_DEBUG_WARNINGStephen Gallagher1-1/+1
Level 3 was far too low for mostly-useless messages
2009-12-03Make debug log timestamps human-readableStephen Gallagher1-2/+7
2009-11-04Simplify debug_fn()Stephen Gallagher1-12/+2
We don't need to be allocating an output string here. This was also causing a runtime bug when the output string contained characters that would be interpreted by fprintf as specifiers.
2009-10-15enable debugging of krb5_childSumit Bose1-4/+36
2009-09-25Send debug messages to logfileJakub Hrozek1-1/+36
Introduces a new option --debug-to-files which makes SSSD output its debug information to a file instead of stderr, which is still the default. Also introduces a new confdb option debug_to_files which does the same, but can be specified per-service in the config file. The logfiles are stored in /var/log/sssd by default. Changes the initscript to log to files by default.
2009-09-23Revert "Use syslog for logging error conditions in SSSD"Stephen Gallagher1-1/+0
This reverts commit 8c50bd085c0efe5fde354deee2c8118887aae29d. Amended: commit 1016af2b1b97ad4290ccce8fa462cc7e3c191b2e also made use of the SYSLOG_ERROR() macro, so those portions of that code also needed to be reverted.
2009-09-21Use syslog for logging error conditions in SSSDJakub Hrozek1-0/+1
This is just a band-aid until ELAPI is fully functional and ready to use.
2009-09-11Add copyright noticesJakub Hrozek1-0/+21
Fixes: #138
2009-07-20Add option to add timestamps to debug outputSimo Sorce1-1/+8
use '--debug-timestamps' at the command line or set 'debug-timestamps = TRUE' in the configuration file.
2009-07-20Instrument memberof for debuggingSimo Sorce1-1/+3
Fix ldb debug to avoid printing the debug function name, it's useless.
2009-06-08Fix invalid pointer error in ldb_debug_messagesStephen Gallagher1-2/+19
2009-05-28Suppress "rootdse" error messages.Stephen Gallagher1-0/+24
We will trap all LDB debug messages and pipe them into our internal DEBUG() function. LDB FATAL messages will still be printed by default, WARNING and TRACE functions will be at debug level 3 and 9, respectively.
2009-02-12Adding sysdb_store_group_posix with unit testStephen Gallagher1-1/+1
2008-11-20Start conversion from a fork() and live to a fork()/exec() model.Simo Sorce1-0/+1
To start the dameon now you need to pass the option -s monitor Still have some problems communicating with children.
2008-11-03Moved method handling into sssd_dbus_connection.c. Added support for ↵Stephen Gallagher1-1/+1
handling multiple D-BUS paths in a connection. Added support for per-connection method setup. Added support for per-connection specialized destructors. Added mandatory getIdentity call for all services connecting to the monitor. If they do not present an identity (expose the getIdentity method and respond with name and version), they are dropped immediately. Other minor fixes.
2008-10-07Forgot to add debug.cSimo Sorce1-0/+20