Skip to content

Instantly share code, notes, and snippets.

@avar
Created February 2, 2010 23:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save avar/293149 to your computer and use it in GitHub Desktop.
Save avar/293149 to your computer and use it in GitHub Desktop.
{
my $log_fh;
sub debug {
my ($line) = @_;
if (not $log_fh) {
open($log_fh, ">>", "/var/log/redmine_pm.log") or die $!;
}
print $log_fh $line, "\n";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment