Skip to content

Instantly share code, notes, and snippets.

@ryanjohnston
Last active September 9, 2018 18:30
Show Gist options
  • Save ryanjohnston/5d84cf5e19756aaa865e29152309f58a to your computer and use it in GitHub Desktop.
Save ryanjohnston/5d84cf5e19756aaa865e29152309f58a to your computer and use it in GitHub Desktop.
[MacOS - Logging] Snippets, Gists and Workflows
##
# configuration file for syslogd and aslmanager
##
# aslmanager logs
> /var/log/asl/Logs/aslmanager external style=lcl-b ttl=2
# authpriv messages are root/admin readable
? [= Facility authpriv] access 0 80
# remoteauth critical, alert, and emergency messages are root/admin readable
? [= Facility remoteauth] [<= Level critical] access 0 80
# broadcast emergency messages
? [= Level emergency] broadcast
# save kernel [PID 0] and launchd [PID 1] messages
? [<= PID 1] store
# ignore "internal" facility
? [= Facility internal] ignore
# save everything from emergency to notice
? [<= Level notice] store
# Rules for /var/log/system.log
> system.log mode=0640 format=bsd rotate=seq compress file_max=5M all_max=50M
? [= Sender kernel] file system.log
? [<= Level notice] file system.log
? [= Facility auth] [<= Level info] file system.log
? [= Facility authpriv] [<= Level info] file system.log
# Facility com.apple.alf.logging gets saved in appfirewall.log
? [= Facility com.apple.alf.logging] file appfirewall.log file_max=5M all_max=50M
# cron
> cron mode=0640 format=bsd rotate=seq compress file_max=5M all_max=50M
? [= Facility cron] [<= Level info] file cron
#!/usr/bin/env bash
#
# Run after updates to /etc/asl.conf
#
sudo launchctl stop com.apple.syslog
sudo launchctl stop com.apple.aslmanager
sudo launchctl start com.apple.syslog
sudo launchctl start com.apple.aslmanager
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment