From 3a6cb372c30c0acb6a564aec9537314eb1668332 Mon Sep 17 00:00:00 2001 From: CaS Date: Tue, 14 Dec 2004 16:11:00 +0000 Subject: [PATCH] Minor documentation tweaks git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/sqlclient/trunk@20453 72102866-910b-0410-8b05-ffd578937521 --- SQLClient.h | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/SQLClient.h b/SQLClient.h index fae9948..560df4b 100644 --- a/SQLClient.h +++ b/SQLClient.h @@ -835,12 +835,16 @@ extern NSTimeInterval SQLClientTimeNow(); + (NSTimeInterval) durationLogging; /** - * Set the debugging level to be inherited by all new instances. + * Set the debugging level to be inherited by all new instances.
+ * See [SQLClient(Logging)-setDebugging:] + * for controlling an individual instance of the class. */ + (void) setDebugging: (unsigned int)level; /** - * Set the duration logging threshold to be inherited by all new instances. + * Set the duration logging threshold to be inherited by new instances.
+ * See [SQLClient(Logging)-setDurationLogging:] + * for controlling an individual instance of the class. */ + (void) setDurationLogging: (NSTimeInterval)threshold; @@ -851,7 +855,10 @@ extern NSTimeInterval SQLClientTimeNow(); - (void) debug: (NSString*)fmt, ...; /** - * Return the current debugging level. + * Return the current debugging level.
+ * A level of zero (default) means that no debug output is produced, + * except for that concerned with logging the database transactions + * taking over a certain amount of time (see the -setDurationLogging: method). */ - (unsigned int) debugging;