KM Log Message

Found the following debug message when checking the log. What does it mean and how did I cause it?

2017-02-28 03:03:45 Assertion Failed: theErr == 0 , file: /Users/peter/Keyboard Maestro/Project/Source/Utility/KBMRunningApplication.mm:34, value: -600
2017-02-28 03:03:45 Assertion Failed: SendProcessCoreEventAE( i_pid, kAEQuitApplication ) == 0 , file: /Users/peter/Keyboard Maestro/Project/Source/Utility/KBMRunningApplication.mm:329, value: -600

You can find the rough meaning of Mac OS status error numbers at:

https://www.osstatus.com

-600 means “procNotFound”, proc being short for process.

By the looks of it you tried to quit an application and the system could not find the process for some reason (might even be that it had already been quit) and hence the error.

The /Users/peter/… just tells me the line number of file that the assertion occurred in (ie, the error happened on line 329 of the file KBMRunningApplication.mm). It is pure text, not any kind of actual reference to a file on your Mac (it’s just the path of a file on my Mac).

Thanks Peter.