File: Debug.pm

package info (click to toggle)
munin 2.0.76-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,064 kB
  • sloc: perl: 11,684; java: 1,924; sh: 1,632; makefile: 636; javascript: 365; python: 267
file content (45 lines) | stat: -rw-r--r-- 774 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package Munin::Node::Configure::Debug;

use strict;
use warnings;

use Exporter ();
our @ISA = qw/Exporter/;
our @EXPORT = qw/DEBUG/;

use Munin::Node::Config;
my $config = Munin::Node::Config->instance();


sub DEBUG { print '# ', @_, "\n" if $config->{DEBUG}; }


1;

__END__

=head1 NAME

Munin::Node::Configure::Debug - Prints a debug message in the standard munin-node-configure format.


=head1 SYNOPSIS

  DEBUG('This is a debug message');

=head1 SUBROUTINES

=over

=item B<DEBUG($message)>

Prints $message in the standard munin-node-configure format (to STDOUT,
prefixed with a '#' character), if and only if the DEBUG flag was set in the
Config instance.

$message should not have a leading '# ', or trailing newline.

=back

=cut
# vim: ts=4 : sw=4 : expandtab