Skip to content

Commit

Permalink
removed flock() from doClampeLog
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon 'CowboyNeal' Pater committed Nov 18, 2004
1 parent c4e724e commit 8ef018b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Slash/Utility/System/System.pm
Expand Up @@ -367,7 +367,7 @@ sub doClampeLog {
my $log_msg = scalar(localtime) . " $sname@msg\n";

open $fh, ">> $file\0" or die "Can't append to $file: $!\nmsg: @msg\n";
flock($fh, LOCK_EX);
# flock($fh, LOCK_EX);
seek($fh, 0, SEEK_END);
print $fh $log_msg;
print $log_msg if $stdout;
Expand Down

0 comments on commit 8ef018b

Please sign in to comment.