react native - Sometimes console.log shows in log-ios sometimes it doesn't -
i have run react-native start in 1 terminal, , react-native ios-run in another. initial console.log show, do.
lot's of times, randomly see:
log message quota exceeded - messages process have been discarded
are console.log's being discarded? tried clearing console see more can't find way clear console either.
on android, wouldn't have issue missing console.log.
react-native logs information using syslog daemon. daemon attempts prevent spamming log (dos attack). these limits set on per process basis.
the simple solution stop/start simulator , obtain new process not limited previous behaviour.
the other solution disable syslogd limits heavilly depends on operation system.
Comments
Post a Comment