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

Retrieving ETA (estimated time of arrival) with Google Distance Matrix API and public transit as transport mode -

android - ConstraintLayout: Realign baseline constraint in case if dependent view visibility was set to GONE -

c# - Populating Gridview inside Listview ItemTemplate On Web User Control from Code Behind -