<GCKLoggerDelegate> Protocol

  • The GCKLoggerDelegate is a protocol that allows for logging by the framework.

  • It inherits from the NSObject protocol.

  • The GCKLoggerDelegate includes two instance methods for logging messages, with one being deprecated in favor of the other.

<GCKLoggerDelegate> Protocol Reference

Overview

The GCKLogger delegate protocol.

Inherits <NSObjectNSObject>.

Instance Method Summary

(void) - logFromFunction:message:
 Logs a message. More...
 
(void) - logMessage:fromFunction:
 Logs a message. More...
 

Method Detail

- (void) logFromFunction: (const char *)  function
message: (NSString *)  message 
optional

Logs a message.

Deprecated:
Use logMessage:fromFunction: instead.
Parameters
functionThe calling function, normally __func__.
messageThe log message.
- (void) logMessage: (NSString *)  message
fromFunction: (NSString *)  function 
optional

Logs a message.

Parameters
functionThe calling function, normally obtained from __func__.
messageThe log message.