<GCKLoggerDelegate> Protocol

<GCKLoggerDelegate> Protocol Reference

Overview

The GCKLogger delegate protocol.

Inherits <NSObjectNSObject>.

Instance Method Summary

(void) - logMessage:atLevel:fromFunction:location:
 Called by the framework to log a message. More...
 
(void) - logMessage:fromFunction:
 Called by the framework to log a message. More...
 

Method Detail

- (void) logMessage: (NSString *)  message
atLevel: (GCKLoggerLevel)  level
fromFunction: (NSString *)  function
location: (NSString *)  location 
optional

Called by the framework to log a message.

Parameters
messageThe log message.
functionThe calling function or method.
levelThe logging level.
locationThe source code location of the log statement.
Since
4.0
- (void) logMessage: (NSString *)  message
fromFunction: (NSString *)  function 
optional

Called by the framework to log a message.

Parameters
functionThe calling function, normally obtained from __func__.
messageThe log message.
Deprecated:
Use logMessage:atLevel:fromFunction:location: instead.