Hi Isomorphic,
I'm developing a DynamicDSGenerator and want to keep track of what it does in the server log.
Is it OK to use your com.isomorphic.log.Logger? I assume so, because there is no reason not to, but it is not javadoc'd.
Best regards
Blama
I'm developing a DynamicDSGenerator and want to keep track of what it does in the server log.
Is it OK to use your com.isomorphic.log.Logger? I assume so, because there is no reason not to, but it is not javadoc'd.
Code:
Logger l = new Logger(RegisterDS.class); l.debug("DSXMLFIELDNAME: \"" + dsXmlFieldname + "\", CSVFIELDNAME: \"" + csvFieldname + "\"");
Blama
Comment