On Tuesday 25 November 2003 06:48 am, drieux wrote:
> On Monday, Nov 24, 2003, at 15:32 US/Pacific, Beau E. Cox wrote:
> [..]
>
> > I'm having trouble logging to syslog on my Linux (Sorcerer)
> > machine with perl 8.0.2 installed. This script logs nothing:
> >
> > #!/usr/bin/perl
> >
> > use strict
On Monday, Nov 24, 2003, at 15:32 US/Pacific, Beau E. Cox wrote:
[..]
I'm having trouble logging to syslog on my Linux (Sorcerer)
machine with perl 8.0.2 installed. This script logs nothing:
#!/usr/bin/perl
use strict;
use warnings;
use Sys::Syslog qw(:DEFAULT setlogsock);
setlogsock('unix');
open
On Monday 24 November 2003 03:03 pm, david wrote:
> Beau E. Cox wrote:
> > Hi -
> >
> > I'm having trouble logging to syslog on my Linux (Sorcerer)
> > machine with perl 8.0.2 installed. This script logs nothing:
Oops - perl 5.8.2
> > [snipped]
"beefed" up the script to:
#!/usr/bin/perl
use st
Beau E. Cox wrote:
Hi -
I'm having trouble logging to syslog on my Linux (Sorcerer)
machine with perl 8.0.2 installed. This script logs nothing:
Should that be 5.8.2?
#!/usr/bin/perl
use strict;
use warnings;
use Sys::Syslog qw(:DEFAULT setlogsock);
setlogsock('unix');
openlog($0, 'cons,pid', 'u
Beau E. Cox wrote:
> Hi -
>
> I'm having trouble logging to syslog on my Linux (Sorcerer)
> machine with perl 8.0.2 installed. This script logs nothing:
>
> #!/usr/bin/perl
>
> use strict;
> use warnings;
> use Sys::Syslog qw(:DEFAULT setlogsock);
>
> setlogsock('unix');
> openlog($0, 'cons,pi
Hi -
I'm having trouble logging to syslog on my Linux (Sorcerer)
machine with perl 8.0.2 installed. This script logs nothing:
#!/usr/bin/perl
use strict;
use warnings;
use Sys::Syslog qw(:DEFAULT setlogsock);
setlogsock('unix');
openlog($0, 'cons,pid', 'user');
syslog('err', 'test error msg');