Calabash: typo in logging?

  Norman,

  In DefaultStep, you have the following method definition, note the
message "Running " + logger:

    public void run() throws SaxonApiException {
        runtime.info(logger, step.getNode(), "Running " + logger);
        runtime.reportStep(step);
    }

resulting in log messages like following:

    INFO: .../invoice.xpl:23: Running java.util.logging.Logger@107bd0d

  Shouldn't it be instead the following, to use the step name instead
of Logger.toString():

    runtime.info(logger, step.getNode(), "Running " + step.getName());

  Regards,

-- 
Florent Georges
http://www.fgeorges.org/

Received on Wednesday, 21 October 2009 10:21:41 UTC