2 # configuration file for syslogd and aslmanager in the iOS Simulator
5 # redirect com.apple.message.domain to $ENV(SIMULATOR_LOG_ROOT)/DiagnosticMessages
6 ? [T com.apple.message.domain] store_dir $ENV(SIMULATOR_LOG_ROOT)/DiagnosticMessages
8 # redirect com.apple.performance* messages to $ENV(SIMULATOR_LOG_ROOT)/performance
9 ? [A= Facility com.apple.performance] store_dir $ENV(SIMULATOR_LOG_ROOT)/performance
11 # redirect com.apple.eventmonitor* messages to $ENV(SIMULATOR_LOG_ROOT)/eventmonitor
12 ? [A= Facility com.apple.eventmonitor] store_dir $ENV(SIMULATOR_LOG_ROOT)/eventmonitor
14 # broadcast emergency messages
15 ? [= Level emergency] broadcast
17 # ignore "internal" facility
18 ? [= Facility internal] ignore
20 # save everything from emergency to notice
21 ? [<= Level notice] store
23 # install messages get saved only in install.log
24 ? [= Facility install] file $ENV(SIMULATOR_LOG_ROOT)/install.log format=bsd file_max=5M all_max=50M
25 ? [= Facility install] ignore
27 > $ENV(SIMULATOR_LOG_ROOT)/system.log mode=0640 format=bsd rotate=seq compress file_max=5M all_max=50M
29 # emergency - notice get saved in system.log
30 ? [<= Level notice] file $ENV(SIMULATOR_LOG_ROOT)/system.log
32 # Facility auth to level info gets saved in system.log
33 ? [= Facility auth] [<= Level info] file $ENV(SIMULATOR_LOG_ROOT)/system.log
35 # Facility authpriv gets saved in system.log
36 ? [= Facility authpriv] file $ENV(SIMULATOR_LOG_ROOT)/system.log