Message Options: - Delimiter
e.g. " - ". It divides the different parts of the logger message, e.g. "myMethod() - my message - return value = a" The delimiter is important when performing "Re-apply"! The delimiter is used in the templates section (Log4E (Templates)) - Delimiter within message
e.g. " : ". It separates the different parts within a ${message} and is used when invoking "Insert Log Statements At This Position..." It should be different to the Delimiter above. The delimiter is used in the templates section (Log4E (Templates)). Example:logger.debug("myMethod() - my message : int i = " + i); - Return value description
e.g. "return value". It is used when logger message includes the return value of the enclosing method. - Open parenthis after methodname
You can leave that preference alone. "(" should be the right setting. Example:logger.debug("myMethod(String) - start"); - Close parenthis after methodname
You can leave that preference alone. ")" should be the right setting. Example:logger.debug("myMethod(String) - start"); - Equals symbol (${enclosing_method_arguments})
Delimiter between variable name and value. And delimiter between "Return value description" and return value. Default: '=' Example:logger.debug("myMethod(String str=" + str + ") - end - return value=" + returnInt);
|