Preferences:Format
Format
Message
Options:
- Delimiter
- Delimiter within message
-
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 "Modification"!
The delimiter is used in the templates section (Log4E (Templates))
-
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);
-
e.g. "return value". It is used when logger message includes the return value
of the enclosing method.
-
You can leave that preference alone. "(" should be the right setting.
Example:
logger.debug("myMethod(String) - start");
-
You can leave that preference alone. ")" should be the right setting.
Example:
logger.debug("myMethod(String) - start");
-
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);