Skip to content
Snippets Groups Projects
Commit 5be248d1 authored by Mark Harrison's avatar Mark Harrison
Browse files

Give a hint when someone mistakenly calls a wildcard module wrong (refs #12)

git-svn-id: https://labs.omniti.com/resmon/branches/resmon2@411 8c0face9-b7db-6ec6-c4b3-d5f7145c7d55
parent 5bd565fe
No related branches found
No related tags found
No related merge requests found
...@@ -12,11 +12,11 @@ sub new { ...@@ -12,11 +12,11 @@ sub new {
} }
sub handler { sub handler {
die "Monitor not implemented.\n"; die "Monitor not implemented. Perhaps this is a wilcard only module?\n";
} }
sub wildcard_handler { sub wildcard_handler {
die "Monitor not implemented.\n"; die "Monitor not implemented. Perhaps this is a non-wildcard module?\n";
} }
sub cache_metrics { sub cache_metrics {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment