]> git.etc.gen.nz Git - spong.git/commitdiff
added $@ to error log text in load_modules
authorStephen L Johnson <sjohnson@monsters.org>
Thu, 17 Jan 2002 17:02:12 +0000 (17:02 +0000)
committerStephen L Johnson <sjohnson@monsters.org>
Thu, 17 Jan 2002 17:02:12 +0000 (17:02 +0000)
src/spong-client.pl

index 11a6c8c78cdea1d22376faa16f742d94bb928c98..0d8b7dac577b858efb5996087ac22054f60e569d 100755 (executable)
@@ -12,7 +12,7 @@
 # History:
 # (1) Ported bb-local.sh script to perl. (Ed Hill Feb 26, 1997)
 #
-# $Id: spong-client.pl,v 1.19 2001/06/20 17:10:22 supermathie Exp $
+# $Id: spong-client.pl,v 1.20 2002/01/17 17:02:12 sljohnson Exp $
 
 use lib '@@LIBDIR@@';
 
@@ -268,7 +268,7 @@ sub load_checks {
    foreach $check (split / /,$CHECKS) {
       &debug( "Loading client check $check", 3 );
       eval "require 'Spong/Client/plugins/check_$check';";
-      if ( $@ ) { &error( "Could not load $check check plugin" ); }
+      if ( $@ ) { &error( "Could not load $check check plugin: $@" ); }
    }
 
    if (defined &check_local) {