@appzung/react-native-code-push
Version:
React Native plugin for the CodePush service
17 lines (16 loc) • 496 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.LogLevel = void 0;
/**
* Used to categorize log messages by their severity and importance.
*/
let LogLevel = exports.LogLevel = /*#__PURE__*/function (LogLevel) {
LogLevel[LogLevel["DEBUG"] = 0] = "DEBUG";
LogLevel[LogLevel["INFO"] = 1] = "INFO";
LogLevel[LogLevel["WARN"] = 2] = "WARN";
LogLevel[LogLevel["ERROR"] = 3] = "ERROR";
return LogLevel;
}({});
//# sourceMappingURL=LogLevel.enum.js.map
;