INFO: [null] /select

I just committed something that changes the default behavior to "[core]"


Perhaps we should omit the [<corename>] if it is null?


an early patch had that, but it seems a bit silly to have every log message check for a valid core name. Right now it does:

  log.warning("["+name+"] "+ msg);

maybe their could be be a
 logID = (name==null)?"": ("["+name+"] ");

then we could have:

  log.warning( logID + msg);


thoughts?
ryan

Reply via email to