logger
logger copied to clipboard
Does not work in react-native
If I use debug flag it tries to write logs into existing stdout (do not exist in react-native)
It works with this global injection
global.process.env = {
...(global.process.env ?? {}),
DEBUG: 'true'
}
global.process.stdout ??= {}
global.process.stdout.write=console.log