Android 和 iOS 的 HockeyApp 日志级别是否相同?

Are the log levels for HockeyApp the same for both Android and iOS?

我正在尝试在 Xamarin 中创建一个通用设置文件,Android 和 iOS 应用程序都将使用该文件。在这个共享设置文件中,我想要一个名为 int HockeyAppLogLevel 的 属性,我可以在两个项目中使用它。

我需要知道 HockeyApp 用于 Android 的日志级别是否与用于 iOS 的日志级别匹配。

例如。我从 HockeyAppLogLevel return 0 映射到 iOS 项目和 Android 项目中的 ERROR

此致

不,它们不一样。

基于documentation

Android 日志级别

iOS 他们是:

Error = 1

Debug = 3

None = 0

Verbose = 4

Warning = 2

我刚刚打印了他们随 SDK (BITLogLevel) 提供的枚举。