GCKLogger 类
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
框架用于日志记录的单例对象。
如果指定了受托人,系统会将设置了格式的日志消息传递给该受托人。否则,消息会在调试 build 中使用 NSLog() 写入,否则会被舍弃。
如需了解委托协议,请参阅 GCKLoggerDelegate。
此类继承 NSObject。
用于启用或停用日志记录的标志。
默认处于开启状态。
- 开始时间
- 3.0
- (BOOL) fileLoggingEnabled |
|
readwritenonatomicassign |
用于启用或停用文件日志记录的标志。
默认处于关闭状态。启用后,日志消息将写入应用缓存目录中的一组轮换文件。可以通过该类的其他属性配置这些文件的数量和大小上限。
- 开始时间
- 3.1
- (BOOL) consoleLoggingEnabled |
|
readwritenonatomicassign |
用于(通过 NSLog)直接启用或停用日志记录到控制台的标志。
默认处于关闭状态。
- 开始时间
- 4.1
- (NSUInteger) maxLogFileSize |
|
readwritenonatomicassign |
日志文件的大小上限(以字节为单位)。
最小值为 32 KiB。如果值为 0,则将使用默认的大小上限 2 MiB。
- 开始时间
- 3.1
- (NSUInteger) maxLogFileCount |
|
readwritenonatomicassign |
- (GCKLoggerLevel) minimumLevel |
|
readwritenonatomicassign |
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2023-12-02。
[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["没有我需要的信息","missingTheInformationINeed","thumb-down"],["太复杂/步骤太多","tooComplicatedTooManySteps","thumb-down"],["内容需要更新","outOfDate","thumb-down"],["翻译问题","translationIssue","thumb-down"],["示例/代码问题","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["最后更新时间 (UTC):2023-12-02。"],[[["GCKLogger is a singleton object used for logging by the Google Cast framework."],["It can pass formatted log messages to a delegate, or write them using NSLog in debug builds."],["Logging can be enabled or disabled, and filtered based on level and other criteria."],["Log messages can optionally be written to rotating files in the app's cache directory."],["Developers can configure file logging parameters such as maximum file size and number of files."]]],[]]