Samond Classes Library 1.2.6-STABLE build 219
SCLog.h File Reference

Logging functions header file. More...

#import <Foundation/Foundation.h>

Go to the source code of this file.

Logging Functions

void SCLog (NSString *format,...)
 
void SCLogv (NSString *format, va_list arguments)
 
void SCLogl (void)
 
void SCError (NSString *format,...)
 
void SCErrorv (NSString *format, va_list arguments)
 
void SCErrorl (void)
 
void SCPrint (NSString *format,...)
 
void SCPrintv (NSString *format, va_list arguments)
 
void SCPrintError (NSString *format,...)
 
void SCPrintErrorv (NSString *format, va_list arguments)
 

Detailed Description

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.

Function Documentation

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
void SCErrorl ( void  )

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
void SCLogl ( void  )

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