Hello,
I have a server whcih logs RMI connections to a file. For example, I can find these kind of log-lines in the file:
2009-10-19 07:43:33,809 INFO [RMI TCP Connection(2559)-109.84.36.165] de.test.foo..FooService This is the log message
I wonder what the number in brackets means: (2559)
Does it represent the number of currently open connections (this would be very bad in my case), or is it just a simple counter to distinguish between different RMI connections in the log file?
Thanks a lot for your help!