Details
-
Improvement
-
Status: Closed
-
Trivial
-
Resolution: Fixed
-
2.0.3-alpha, 3.0.0-alpha1
-
Reviewed
Description
Abstract class Storage has a toString method:
return "Storage Directory " + this.root;
and in the subclass JNStorage we could see:
LOG.info("Formatting journal storage directory " +
sd + " with nsid: " + getNamespaceID());
that'll print sth like "Formatting journal storage directory Storage Directory xxxxx"
Just one line change to:
{quota}LOG.info("Formatting journal " + sd + " with nsid: " + getNamespaceID());{quota}