]>
Commit | Line | Data |
---|---|---|
81582353 A |
1 | ## |
2 | # configuration file for syslogd and aslmanager in the iOS Simulator | |
3 | ## | |
4 | ||
5 | # redirect com.apple.message.domain to $ENV(IPHONE_SIMULATOR_LOG_ROOT)/DiagnosticMessages | |
6 | ? [T com.apple.message.domain] store_dir $ENV(IPHONE_SIMULATOR_LOG_ROOT)/DiagnosticMessages | |
7 | ||
8 | # redirect com.apple.performance* messages to $ENV(IPHONE_SIMULATOR_LOG_ROOT)/performance | |
9 | ? [A= Facility com.apple.performance] store_dir $ENV(IPHONE_SIMULATOR_LOG_ROOT)/performance | |
10 | ||
11 | # redirect com.apple.eventmonitor* messages to $ENV(IPHONE_SIMULATOR_LOG_ROOT)/eventmonitor | |
12 | ? [A= Facility com.apple.eventmonitor] store_dir $ENV(IPHONE_SIMULATOR_LOG_ROOT)/eventmonitor | |
13 | ||
14 | # broadcast emergency messages | |
15 | ? [= Level emergency] broadcast | |
16 | ||
17 | # ignore "internal" facility | |
18 | ? [= Facility internal] ignore | |
19 | ||
20 | # save everything from emergency to notice | |
21 | ? [<= Level notice] store | |
22 | ||
23 | # install messages get saved only in install.log | |
24 | ? [= Facility install] file $ENV(IPHONE_SIMULATOR_LOG_ROOT)/install.log format=bsd | |
25 | ? [= Facility install] ignore | |
26 | ||
27 | # emergency - notice get saved in system.log | |
28 | ? [<= Level notice] file $ENV(IPHONE_SIMULATOR_LOG_ROOT)/system.log | |
29 | ||
30 | # Facility auth to level info gets saved in system.log | |
31 | ? [= Facility auth] [<= Level info] file $ENV(IPHONE_SIMULATOR_LOG_ROOT)/system.log | |
32 | ||
33 | # Facility authpriv gets saved in system.log | |
34 | ? [= Facility authpriv] file $ENV(IPHONE_SIMULATOR_LOG_ROOT)/system.log |