Skip to content

Commit

Permalink
adding the exception to the erorr output
Browse files Browse the repository at this point in the history
 * #14 (comment)

  00:59:17,441 packages.buskill DEBUG DEBUG: BusKill soft-shutdown trigger executing now
  00:59:17,441 packages.buskill DEBUG DEBUG: Attempting to send 'soft-shutdown' command to root child
  00:59:17,443 packages.buskill ERROR ERROR: Failed to send 'soft-shutdown' command to root child
  • Loading branch information
maltfield committed Oct 17, 2022
1 parent 4a6f425 commit ea1521a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/packages/buskill/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1281,7 +1281,7 @@ def trigger_softshutdown_mac_shutdown(self):

except Exception as e:
# that didn't work; log it give up :(
msg = "ERROR: Failed to send 'soft-shutdown' command to root child"
msg = "ERROR: Failed to send 'soft-shutdown' command to root child \n\t" +str(e)
print( msg ); logger.error(msg)

#####################
Expand Down

0 comments on commit ea1521a

Please sign in to comment.