AI-generated Key Takeaways
-
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
|
optional |
Logs a message.
- Deprecated:
- Use logMessage:fromFunction: instead.
- Parameters
-
function The calling function, normally __func__.message The log message.
|
optional |
Logs a message.
- Parameters
-
function The calling function, normally obtained from __func__.message The log message.