- Apr 04, 2013
-
-
Carl Harris authored
If the appender does not have a thread pool configuration, we now use the context's ExecutorService instead of creating a new one based on the default ThreadPoolConfiguration.
-
Carl Harris authored
-
Carl Harris authored
When testing the exception reported by SocketConnectorBase after a connection failure, the test now uses lock and associated condition to avoid synchronization issues.
-
Carl Harris authored
The context injected by logback into SocketServer is subsequently injected into RemoteAppenderServerRunner. The runner simply casts it to LoggerContext before injecting it into the client object.
-
Ceki Gulcu authored
updated documentation for simplified scala-less build, increased timeout in AppenderAttachableImplLockTest
-
Carl Harris authored
work in progress on documentation of SocketRemote/ServerSocketAppender
-
Carl Harris authored
Committing before moving to a clone of qos-ch/logback instead of my fork.
-
Carl Harris authored
removed some assertions that were not critical
-
Carl Harris authored
The test was system timing sensitive due to testing some assertions on fields without proper synchronization. The assertions themselves were not especially critical, and adding the synchronization would have added significant complexity, so the assertions were removed.
-
Carl Harris authored
reduce system timing sensitivity in SocketConnectorBaseTest
-
Carl Harris authored
LOGBACK-826: work in progress on documentation
-
Carl Harris authored
Now using a larger delay tolerance and additional Thread.join calls to give the connector thread time to exit before testing assertions that it did exit properly.
-
Carl Harris authored
-
Carl Harris authored
Other example configurations using layout remain and need the same treatment.
-
Carl Harris authored
-
Carl Harris authored
-
Carl Harris authored
changed SocketRemote address property to host
-
Carl Harris authored
SocketAppenderBase uses 'remoteHost'. The 'remote' suffix seems a little redundant when configuring the property inside of a <remote> component, so the preferred name is 'host' in SocketRemote. However, for consistency with SocketAppenderBase, this property can also be set using 'remoteHost'.
-
Carl Harris authored
removed name property from SocketRemote
-
Carl Harris authored
The name served no real purpose, while creating potential for confusion and additional noise in the configuration.
-
Carl Harris authored
LOGBACK-826: added SocketRemote examples
-
Carl Harris authored
Simple examples of configuring a ServerSocketAppender and a corresponding SocketRemote.
-
Carl Harris authored
Improvements to error logging in ConcurrentServerRunner
-
Carl Harris authored
Leftover from the removal of the logging methods.
-
Carl Harris authored
-
Carl Harris authored
-
Carl Harris authored
ConcurrentServerRunner was delegating logging to methods defined by a subclass. For subclasses defined in core, these methods were simply delegating to methods of ContextAware. For subclasses defined elsewhere (in which a LoggerContext might be available) logging might be handled differently. The logging produced by ConcurrentServerRunner is mostly intended to be diagnostic, so for consistency (no matter which module might contain the subclass) logging is now handled exclusively through ContextAware. This implies that this diagnostic logging is available only when the LoggerContext is configured for debugging, but at least that limitation is now consistent across subclasses of ConcurrentServerRunner.
-
Carl Harris authored
Handle RejectedExecutionException in ConcurrentServerRunner
-
Carl Harris authored
-
Carl Harris authored
-
Carl Harris authored
When the Executor rejects an execute request for a client runner, we summarily close the client socket to avoid a temporary resource leak.
-
Carl Harris authored
Cleaning up finally clauses with nested try blocks
-
Carl Harris authored
-
Carl Harris authored
-
Carl Harris authored
LOGBACK-625: create new component that acts as a client for ServerSocketAppender
-
- Apr 03, 2013
-
-
Carl Harris authored
Needed some missing classes from logback master.
-
Carl Harris authored
Not sure if the original author prefers the wildcard import...
-
Carl Harris authored
SSLSocketRemote has an 'ssl' property of type SSLConfiguration.
-
Carl Harris authored
-
Carl Harris authored
-