I'm using logback/slf4j to do logging, and it works like a charm on my mac development machine.
I have the following pattern used for mail appender subject:
<subject>[ERROR] ${HOSTNAME} : %msg</subject>
When running the service on my mac, I receive a subject like this
macbook-pro.localhost : Error message
When I run the service on a Debian (Lenny) VPS, I get the following email subject
HOSTNAME_IS_UNDEFIENED : Error message
Typing 'hostname' in command line for both mac and debian machine produces the following:
mac: macbook-pro.localhost
debian: s1.myservice.com
I'd like to see the s1.myservice.com in email subject. Would appreciate any guidance.