This file is indexed.

/usr/share/perl5/Debconf/Log.pm is in debconf 1.5.66.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
#!/usr/bin/perl
# This file was preprocessed, do not edit!


package Debconf::Log;
use strict;
use base qw(Exporter);
our @EXPORT_OK=qw(debug warn);
our %EXPORT_TAGS = (all => [@EXPORT_OK]); # Import :all to get everything.
require Debconf::Config; # not use; there are recursive use loops


my $log_open=0;
sub debug {
	my $type=shift;
	
	my $debug=Debconf::Config->debug;
	if ($debug && $type =~ /$debug/) {
		print STDERR "debconf ($type): ".join(" ", @_)."\n";
	}
	
	my $log=Debconf::Config->log;
	if ($log && $type =~ /$log/) {
		require Sys::Syslog;
		unless ($log_open) {
			Sys::Syslog::setlogsock('unix');
			Sys::Syslog::openlog('debconf', '', 'user');
			$log_open=1;
		}
		eval { # ignore all exceptions this throws
			Sys::Syslog::syslog('debug', "($type): ".
				join(" ", @_));
		};
	}
}


sub warn {
	print STDERR "debconf: ".join(" ", @_)."\n"
		unless Debconf::Config->nowarnings eq 'yes';
}


1