|
ObjFW
|
Go to the source code of this file.
Classes | |
| class | OFStdIOStream |
| A class for providing standard input, output and error as OFStream. More... | |
Functions | |
| void | OFLog (OFConstantString *format,...) |
| Logs the specified printf-style format to OFStdErr. | |
| void | OFLogV (OFConstantString *format, va_list arguments) |
| Logs the specified printf-style format to OFStdErr. | |
Variables | |
| OFStdIOStream * | OFStdIn |
| The standard input as an OFStream. | |
| OFStdIOStream * | OFStdOut |
| The standard output as an OFStream. | |
| OFStdIOStream * | OFStdErr |
| The standard error as an OFStream. | |
| void OFLog | ( | OFConstantString * | format, |
| ... | |||
| ) |
Logs the specified printf-style format to OFStdErr.
This prefixes the output with the date, timestamp, process name and PID.
| format | The format for the line to log. See writeFormat: (OFStream). |
| void OFLogV | ( | OFConstantString * | format, |
| va_list | arguments | ||
| ) |
Logs the specified printf-style format to OFStdErr.
This prefixes the output with the date, timestamp, process name and PID.
| format | The format for the line to log. See writeFormat: (OFStream). |
| arguments | The arguments for the format |