plot: rename log into logf
Having a function named log
is relatively annoying when one is
debugging, especially in conjunction with goimports
:
adding log.Fatalf("foo")
statements is confusing goimports
as a
function with the name log
is already defined.
Rename log
into logf
.
Please take a look.