Skip to main content

Create Your Logger

You should create your own logging functions using any third-party library. For react-native, we recommend using react-native-logs:

src/logger.ts
const log = RNlogger.createLogger({
levels: {
debug: 0,
info: 1,
warn: 2,
error: 3,
},
transport: [
consoleTransport,
],
transportOptions: {
colors: {
info: 'blueBright',
warn: 'yellowBright',
error: 'redBright',
debug: 'cyanBright',
}
},
printLevel: false,
printDate: true,
})

logger.debug = log.debug
logger.info = log.info
logger.error = log.error
logger.warn = log.warn
logger.log = log.debug

Why Create Your Own Logger?

There are many logging libraries that offer powerful additional features, making it unnecessary for our library to support all of them. By using an external logging library, you can take advantage of advanced functionalities that best suit your needs.