symptomsd: a wifi flow named com.mycompany.MyDaemon is ignored (directly reachable target)

I've got a launch daemon that is running under Sierra (10.12) and causing symptomsd to emit messages several times a second forever:


default 10:47:25.307172 -0500 symptomsd a wifi flow named com.mycompany.MyDaemon is ignored (directly reachable target)


The launch daemon's plist is installed in /Library/Preferences/com.mycompany.MyDaemon.plist and looks like:


<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE plist PUBLIC "-/

<plist version="1.0">

<dict>

<key>Label</key>

<string>com.mycompany.MyDaemon</string>

<key>ProgramArguments</key>

<array>

<string>/Applications/MyApp.app/Contents/Resources/MyDaemon</string>

</array>

<key>RunAtLoad</key>

<true/>

<key>KeepAlive</key>

<true/>

<key>StandardOutPath</key>

<string>/var/log/MyApp.log</string>

<key>StandardErrorPath</key>

<string>/var/log/MyAppError.log</string>

</dict>

</plist>


How can I silence these messages?

Replies

Is this message correlated with a failure in your daemon? Or are you just worried about the message itself? If it’s the latter, I wouldn’t worry too much about it; it seems to crop up with all sorts of daemons.

Share and Enjoy

Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware

let myEmail = "eskimo" + "1" + "@apple.com"