--- loncom/xml/lonplot.pm 2012/07/24 11:02:58 1.164 +++ loncom/xml/lonplot.pm 2012/09/10 09:51:15 1.166 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Dynamic plot # -# $Id: lonplot.pm,v 1.164 2012/07/24 11:02:58 foxr Exp $ +# $Id: lonplot.pm,v 1.166 2012/09/10 09:51:15 foxr Exp $ # # Copyright Michigan State University Board of Trustees # @@ -1759,6 +1759,7 @@ sub generate_tics { sub write_gnuplot_file { my ($tmpdir,$filename,$target)= @_; my ($fontsize, $font_properties) = &get_font($target); + &Apache::lonnet::logthis("Fontsize: $fontsize"); my $gnuplot_input = ''; my $curve; # @@ -2091,7 +2092,7 @@ sub write_gnuplot_file { } # Write the output to a file. - &Apache::lonnet::logthis($gnuplot_input); # uncomment to log the gnuplot input. + # &Apache::lonnet::logthis($gnuplot_input); # uncomment to log the gnuplot input. open (my $fh, "> $tmpdir$filename.data"); binmode($fh, ':utf8'); print $fh $gnuplot_input;