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

Popular posts from this blog

How to understand 2 main() functions after using uftrace to profile the C++ program? -

c# - Update a combobox from a presenter (MVP) -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -