logger icon indicating copy to clipboard operation
logger copied to clipboard

Does not work in react-native

Open XantreDev opened this issue 1 year ago • 1 comments

If I use debug flag it tries to write logs into existing stdout (do not exist in react-native) image image

XantreDev avatar Apr 10 '24 11:04 XantreDev

It works with this global injection

global.process.env = {
  ...(global.process.env ?? {}), 
  DEBUG: 'true'
}
global.process.stdout ??= {}
global.process.stdout.write=console.log

XantreDev avatar Apr 10 '24 11:04 XantreDev