@iterable/react-native-sdk
Version:
Iterable SDK for React Native.
18 lines (17 loc) • 881 B
JavaScript
;
/**
* Enum representing the level of logs will Android and iOS projects be using.
*
* @see [Android Log Levels](https://source.android.com/docs/core/tests/debug/understanding-logging)
* @see [iOS Log Levels](https://apple.github.io/swift-log/docs/current/Logging/Structs/Logger/Level.html#/s:7Logging6LoggerV5LevelO4infoyA2EmF)
*/
export let IterableLogLevel = /*#__PURE__*/function (IterableLogLevel) {
/** Appropriate for messages that contain information normally of use only when debugging a program. */
IterableLogLevel[IterableLogLevel["debug"] = 1] = "debug";
/** Appropriate for informational messages. */
IterableLogLevel[IterableLogLevel["info"] = 2] = "info";
/** Appropriate for error conditions. */
IterableLogLevel[IterableLogLevel["error"] = 3] = "error";
return IterableLogLevel;
}({});
//# sourceMappingURL=IterableLogLevel.js.map