Change input form of Trce
This commit is contained in:
parent
ddb8788eb6
commit
81058c9c20
1 changed files with 1 additions and 1 deletions
|
@ -136,7 +136,7 @@ sub grades_generate
|
||||||
{
|
{
|
||||||
open my $xmltrace, "<", "$basedir/$tr_file" or die "$tr_file: $!";
|
open my $xmltrace, "<", "$basedir/$tr_file" or die "$tr_file: $!";
|
||||||
binmode $xmltrace;
|
binmode $xmltrace;
|
||||||
my $trace = Trace->new($xmltrace);
|
my $trace = Trace->new(join '', <$xmltrace>);
|
||||||
close $xmltrace;
|
close $xmltrace;
|
||||||
|
|
||||||
log DEBUG, "Fill from file: $tr_file";
|
log DEBUG, "Fill from file: $tr_file";
|
||||||
|
|
Reference in a new issue