]>
Commit | Line | Data |
---|---|---|
81582353 A |
1 | ## |
2 | # configuration file for syslogd and aslmanager in the iOS Simulator | |
3 | ## | |
4 | ||
f3df4c03 A |
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 | |
81582353 | 7 | |
f3df4c03 A |
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 | |
81582353 | 10 | |
f3df4c03 A |
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 | |
81582353 | 13 | |
81582353 A |
14 | # ignore "internal" facility |
15 | ? [= Facility internal] ignore | |
16 | ||
17 | # save everything from emergency to notice | |
18 | ? [<= Level notice] store | |
19 | ||
20 | # install messages get saved only in install.log | |
f3df4c03 | 21 | ? [= Facility install] file $ENV(SIMULATOR_LOG_ROOT)/install.log format=bsd file_max=5M all_max=50M |
81582353 A |
22 | ? [= Facility install] ignore |
23 | ||
f3df4c03 A |
24 | > $ENV(SIMULATOR_LOG_ROOT)/system.log mode=0640 format=bsd rotate=seq compress file_max=5M all_max=50M |
25 | ||
81582353 | 26 | # emergency - notice get saved in system.log |
f3df4c03 | 27 | ? [<= Level notice] file $ENV(SIMULATOR_LOG_ROOT)/system.log |
81582353 A |
28 | |
29 | # Facility auth to level info gets saved in system.log | |
f3df4c03 | 30 | ? [= Facility auth] [<= Level info] file $ENV(SIMULATOR_LOG_ROOT)/system.log |
81582353 A |
31 | |
32 | # Facility authpriv gets saved in system.log | |
f3df4c03 | 33 | ? [= Facility authpriv] file $ENV(SIMULATOR_LOG_ROOT)/system.log |