react-native-moengage
Version:
MoEngage is a mobile marketing automation company. This react-native SDK helps you track events, trigger smart notifications and in-apps, provides a drop-in Inbox Controller for notifications.
37 lines (30 loc) • 625 B
text/typescript
/**
* Different Log Level Supported by the {@link MoEngageLogConfig}
*/
const enum MoEngageLogLevel {
/**
* No logs from the SDK would be printed.
*/
NO_LOG = 0,
/**
* Error logs from the SDK would be printed.
*/
ERROR = 1,
/**
* Warning logs from the SDK would be printed.
*/
WARN = 2,
/**
* Info logs from the SDK would be printed.
*/
INFO = 3,
/**
* Debug logs from the SDK would be printed.
*/
DEBUG = 4,
/**
* Verbose logs from the SDK would be printed.
*/
VERBOSE = 5
}
export default MoEngageLogLevel;