Skip to content

Commit

Permalink
mldistwatch: load FindBin before PAUSE::Logger
Browse files Browse the repository at this point in the history
...so that we *can* load PAUSE::Logger!
  • Loading branch information
rjbs committed Apr 26, 2024
1 parent ddf57bc commit 8a55708
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions cron/mldistwatch
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,15 @@ Setting testhost prevents sending mail; automatically sets skip-locking too.
=cut

use strict;
use FindBin;
use lib "$FindBin::Bin/../lib";

use PAUSE::Logger '$Logger' => { init => {
ident => 'mldistwatch',
facility => 'daemon',
} };

use strict;
use FindBin;
use lib "$FindBin::Bin/../lib";
use PAUSE::mldistwatch ();

use Getopt::Long ();
Expand Down

0 comments on commit 8a55708

Please sign in to comment.