@dynatrace/react-native-plugin
Version:
This plugin gives you the ability to use the Dynatrace Mobile agent in your react native application.
14 lines (13 loc) • 357 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LogLevelToString = void 0;
const LogLevel_1 = require("./LogLevel");
const LogLevelToString = (level) => {
if (level === LogLevel_1.LogLevel.Debug) {
return 'Debug';
}
else {
return 'Info';
}
};
exports.LogLevelToString = LogLevelToString;