Logging functions header file.
More...
#import <Foundation/Foundation.h>
Go to the source code of this file.
Logging functions header file.
- SDK
- macOS 10.6+, iOS 7.0+, GNUstep
- Since
- version 1.2.4
Contains the declaration functions that output the various logging information.
void SCError |
( |
NSString * |
format, |
|
|
|
... |
|
) |
| |
Writes a formatted message into the stderr.
- Parameters
-
format | - a format string |
... | - a comma-separated list of arguments to substitute into the format string |
Writes an empty string into the stderr.
void SCErrorv |
( |
NSString * |
format, |
|
|
va_list |
arguments |
|
) |
| |
Writes a formatted message into the stderr.
- Parameters
-
format | - a format string |
arguments | - a list of arguments to substitute into the format string |
void SCLog |
( |
NSString * |
format, |
|
|
|
... |
|
) |
| |
Writes a formatted message into the stdout.
- Parameters
-
format | - a format string |
... | - a comma-separated list of arguments to substitute into the format string |
Writes an empty string into the stdout.
void SCLogv |
( |
NSString * |
format, |
|
|
va_list |
arguments |
|
) |
| |
Writes a formatted message into the stdout.
- Parameters
-
format | - a format string |
arguments | - a list of arguments to substitute into the format string |
void SCPrint |
( |
NSString * |
format, |
|
|
|
... |
|
) |
| |
Writes a formatted message into the stdout without a new line character.
- Parameters
-
format | - a format string |
... | - a comma-separated list of arguments to substitute into the format string |
void SCPrintError |
( |
NSString * |
format, |
|
|
|
... |
|
) |
| |
Writes a formatted message into the stderr without a new line character.
- Parameters
-
format | - a format string |
... | - a comma-separated list of arguments to substitute into the format string |
void SCPrintErrorv |
( |
NSString * |
format, |
|
|
va_list |
arguments |
|
) |
| |
Writes a formatted message into the stderr without a new line character.
- Parameters
-
format | - a format string |
arguments | - a list of arguments to substitute into the format string |
void SCPrintv |
( |
NSString * |
format, |
|
|
va_list |
arguments |
|
) |
| |
Writes a formatted message into the stdout without a new line character.
- Parameters
-
format | - a format string |
arguments | - a list of arguments to substitute into the format string |