Hello,

Simon Kitching wrote:
== LogFactory as factory for Log instances

Currently, JCL uses a LogFactory to create Log instances:
  Log log = LogFactory.getLog("fff");

By contrast, Log4j has the factory method on the Log class:
  Logger log = Logger.getLog("fff");

Having one less class is a *little* nicer for users I think. However it
does reduce the flexibility of the system a little and changing this is
a major difference from JCL 1.x.

My choice would be: keep LogFactory and LogFactory.getLog as the
mechanism for obtaining Log instances.
There is one really big advantage of the current API in this case:
If you want to have Logger.getLog("fff") Logger must be a class, currently it is an interface. Please do not switch from an interface to an class, since it is impossible to provide a native
implementation of JCL2 without an interface.

Regards
Boris


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to