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.

link|improve this question

On your debian machine what is the contents of /etc/hostname ? – Terrell Plotzki Jul 11 '11 at 20:54
content of /etc/hostname is s1 – Up. Jul 21 '11 at 11:07
pinging s1 results on unknown host, same is true for s1.myservice.com – Up. Jul 21 '11 at 11:09
feedback

1 Answer

Logback gets the value of HOSTNAME with InetAddress.getLocalHost().getHostName(). Check what the following code prints on your server:

final InetAddress localHost = InetAddress.getLocalHost();
System.out.println("hostAddress: " + localHost.getHostAddress());
System.out.println("hostName: " + localHost.getHostName());
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.