Up
Authors
- Richard Frith-Macdonald (
rfm@gnu.org
)
-
Date: Generated at 2024-11-18 21:56:54 +0100
Copyright: (C) 2003-2010 Free Software Foundation, Inc.
- Declared in:
- GNUstepBase/NSProcessInfo+GNUstepBase.h
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (BOOL)
debugLoggingEnabled;
Availability: Not in OpenStep/MacOS-X
Returns a indication of whether debug logging is
enabled. This returns
YES
unless a
call to
-setDebugLoggingEnabled:
has been used to turn logging off.
- (
NSMutableSet*)
debugSet;
Availability: Not in OpenStep/MacOS-X
This method returns a set of debug levels set using
the --GNU-Debug=... command line option and/or the
GNU-Debug user default.
You can modify
this set to change the debug logging under your
programs control... but such modifications are not
thread-safe.
- (void)
setDebugLoggingEnabled: (BOOL)flag;
Availability: Not in OpenStep/MacOS-X
This method permits you to turn all debug logging on
or off without modifying the set of debug levels in use.
Up