UNPKG

react-native-logmatic

Version:

Send your logs directly to Logmatic with React Native

22 lines (14 loc) 341 B
import { NativeModules } from 'react-native'; const { RNLogmatic } = NativeModules; class Logmatic { init(apiKey) { return RNLogmatic.init(apiKey); } log(message, context = {}) { return RNLogmatic.log(message, context); } setMetas(metas) { return RNLogmatic.setMetas(metas); } } export default new Logmatic();