Hi I have a question regarding a log4j logger.
There is a part of the logger text I don't quite follow. The line looks as follows
logger.debug("Some text goes here [{}] and some more text here", someObject.function());
I had a look but I can't seem to find this as a regular expression, it smells strongly like it could be though and I suspect that it will be replaced by the returned value of someObject.function()
much how one could replace string values in output by placing a %s. Would I be correct in this assumption? if not please elaborate as to what it does.