Fix alert to include src module in msg
authorSiraaj Khandkar <siraaj@khandkar.net>
Wed, 29 Aug 2018 21:47:53 +0000 (17:47 -0400)
committerSiraaj Khandkar <siraaj@khandkar.net>
Wed, 29 Aug 2018 21:48:07 +0000 (17:48 -0400)
src/awk/lib/alert.awk

index c043ea8..5e14146 100755 (executable)
@@ -2,5 +2,5 @@ function alert(priority, subject, body) {
     # priority : "low" | "med" | "hi"
     # subject  : string without spaces
     # body     : anything
-    print("OK", "alert", priority, subject, body)
+    print("OK", Module, "alert", priority, subject, body)
 }
This page took 0.023554 seconds and 4 git commands to generate.