I want my messages to be added whenever we are logging something . For example if i am logging
log.info("Hello");
The message should be appended with some id which will be from my application.So the final logging message printed on console will be
Hello 1 Hello 2
Do i need to add an appender for this . If yes how can i achieve it using logback ?