<GCKLoggerDelegate> Protocolo

Referencia del protocolo <GCKLoggerDelegate>

Descripción general

El protocolo de delegado GCKLogger

Hereda <NSObjectNSObject>.

Resumen del método de instancia

(void) - logMessage:atLevel:fromFunction:location:
 Lo llama el framework para registrar un mensaje. Más...
 
(void) - logMessage:fromFunction:
 Lo llama el framework para registrar un mensaje. Más...
 

Detalle del método

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

Lo llama el framework para registrar un mensaje.

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

Lo llama el framework para registrar un mensaje.

Parameters
functionThe calling function, normally obtained from __func__.
messageThe log message.
Deprecated:
En su lugar, usa logMessage:atLevel:fromFunction:location:.