Ecosyste.ms: OpenCollective

An open API service for software projects hosted on Open Collective.

github.com/tony19/logback-android

πŸ“„The reliable, generic, fast and flexible logging framework for Android
https://github.com/tony19/logback-android

improved logging in RemoteLoggerStreamClient

7bfdf19d25ddfb3f49d3e5759704e2f30ab7f6b0 authored almost 12 years ago
ServerSocketAppenderBase must invoke super.stop()

Duh.

2dfa4683e02a95dfae37a3d4650ca9f829577755 authored almost 12 years ago
added missing StatusChecker class

e15a680ac203006a0102e7827c638828ac01cec5 authored almost 12 years ago
must call super.start() in ServerSocketAppenderBase

Duh.

c1ce66108099e2494e710dc5d47ca93882a830b4 authored almost 12 years ago
Merge pull request #93 from ceharris/LOGBACK-822

LOGBACK-822: add ServerSocketAppenderBase and SSLServerSocketAppenderBase to core

ce038c12261a6815286a2bb4916a10e308c832e2 authored almost 12 years ago
changed server implementation classes to package-private visibility

These classes are all part of the implementation and should not be
visible outside of the package.

45159ceed9163e4d0c48b7ec73180631d8b53fde authored almost 12 years ago
fixed a potential NPE in RemoteAppenderStreamClient.run

The ObjectInputStream reference (oos) was being closed without checking
to see if it was ever cr...

edf75ee449cf93652ee6446af062e04594c1de92 authored almost 12 years ago
SocketServer.stop() now invokes ExecutorService.shutdownNow()

This was done to be consistent with the implementation in
ServerSocketAppenderBase, but isn't st...

76d0bc4cba684d0c70c5cd9c0c82c40dab261177 authored almost 12 years ago
ServerSocketAppenderBase.stop() now invokes executor.shutdownNow()

This ensures that any clients that are blocked waiting to take the next
event from the queue wil...

f880c687b2d0755eb6e0a41ffe3dec83e3fac46a authored almost 12 years ago
ThreadPoolFactoryBean.createExecutor now returns an ExecutorService

This will allow the created ExecutorService to be shutdown in the
relevant stop method.

1f3983b2f7fead31c623a566aa5d88ab2c68e05f authored almost 12 years ago
ensure that socket resources are closed by RemoteAppenderStreamClient

In the existing RemoteAppenderStreamClient, an InputStream obtained from
the underlying socket w...

67dbcc9a4afe156a253c31b16c676a746bf93cb3 authored almost 12 years ago
added type parameters for client type to test support classes

f52a4684d6ba978c95aebbe1c1737cd69c7737cb authored almost 12 years ago
added a functional test for ServerSocketAppenderBase

45b328434e16783204481fa15a1b878c7ae858ce authored almost 12 years ago
Completed implementation of ServerSocketAppenderBase

Implemented lifecyle and appender methods, and added unit tests and
supporting classes.

38a5b7a43ea58a5a1da3e1f9fcbbe37213dbd769 authored almost 12 years ago
added type parameter to MockServerRunner

d870375940ec040ee88ea5b38c79b9005e5b2641 authored almost 12 years ago
refactored StatusChecker into StatusUtil, added assertion methods

30273b1b04a04719143ea5d6c167daa3aaf303c6 authored almost 12 years ago
updated RemoteLoggerServerRunner to configure client's event queue

3f8b5504082165fa8c94fcd4ba4243fc96f94882 authored almost 12 years ago
added unit test for RemoteLoggerStreamClient

827aba17b6f905ac1695f4cd7661f584f5ee10b4 authored almost 12 years ago
RemoteLoggerClient now allows the event queue to be configured

Previously only the queue size was exposed. Having the queue itself
exposed for configuration m...

9f90fb4800d34c2d73b219b1efd3a46bb2efd1d1 authored almost 12 years ago
delegated ConcurrentServerRunner.stop() to .accept(ClientVisitor)

The stop method was iterating a copy of the collection. Since this is
exactly what accept(Clien...

9476bc6345e54f60c912a9be5cbf74537d3a80b9 authored almost 12 years ago
added supporting classes for serving logging events to remote loggers

7964d6e9246f3c4323724f3d0a21ea42582f5d3c authored almost 12 years ago
added missing ClientVisitor interface and mock

f5c38f2592256ed086df82b466be7a9a6c9d3521 authored almost 12 years ago
added ServerRunner.accept(ClientVisitor)

This method will allow a user of a ServerRunner to visit each of the
connected clients in order ...

7752061e0ccd68d7a99390e5b995b8934d71552d authored almost 12 years ago
moved ThreadPoolFactoryBean to ..core.net.server

5153e899d3cb0b5c11683163bdf6ede2f8780a89 authored almost 12 years ago
moved supporting abstractions for server from classic to core

a5faeaac8618c52a21688a1e90957837d16cf86a authored almost 12 years ago
renamed StreamClientTest to RemoteAppenderStreamClient test

9fdfb7c27616106e7f6535cca0cb58a2f7a73d2e authored almost 12 years ago
provide no-op logging methods in InstrumentedConcurrentServerRunner

98b665e5423de77794416309353edab994e0017f authored almost 12 years ago
moved references to slf4j and classic into subclass

When the ConcurrentServerRunner is moved to core, it cannot reference
directly the Logger and Lo...

09ea873b408e07a19f012dd82fe8433ac47c99c3 authored almost 12 years ago
removed references to SocketRunner

The javadoc references to SocketRunner will cause an unwanted important
when this interface is m...

1e7ed7679a014e424f7da5a5996fc09383b8294d authored almost 12 years ago
added public modifier to abstract server classes

23c74f411ff79faa3f4bb4e0f984f6edaf8626b4 authored almost 12 years ago
converted server support classes to use generics

The ServerListener was converted to use a type parameter for the Client
subtype. The Client int...

aa25253552ad4766108289f5783d9f4436f20f3f authored almost 12 years ago
added package javadoc for ..core.net.server

9ab2a7e63781e73f348f49834c511061c254d421 authored almost 12 years ago
added SSLServerSocketAppenderBase and associated test class

39481b77adf5f371da95acb294cc86ce0e89a7cd authored almost 12 years ago
added initial definition of ServerSocketAppenderBase

cbea8330b0a75027442c9b4edd684c2690053b4d authored almost 12 years ago
moved MockContext to .mock package and changed to public

182150017b5c8561c74b27de2085dea4129ffd6a authored almost 12 years ago
Merge pull request #90 from ceharris/LOGBACK-819

LOGBACK-819: added support for a logging server that is configurable in logback.xml

27dd43418b4dc66f39c53cdf5777874d27c53135 authored almost 12 years ago
added missing newlines at ends of files

11d86c479259625ad53a5cc3998bdfd7d08aa76b authored almost 12 years ago
add missing newline at end of file

d4cc902b52ac3c5e158985970909ded070d21e1d authored almost 12 years ago
fixed duplication of server log messages

In ConcurrentServerRunner, after the LoggingContext is resolved,
informational and error message...

0d8c97cf3eb3c2d7e03037117d64915b7a008c63 authored almost 12 years ago
minor javadoc clarification

dc7207faf12789e7bba9dca4b40c32a636abdd1b authored almost 12 years ago
replaced javadoc references to ConcurrentServerRunner with ServerRunner

The references replaced should have been referring to the interface,
not the concrete implementa...

5297b4674ce2f0993a2ffea4ddd4c1b8058c04bb authored almost 12 years ago
Merge pull request #86 from ceharris/moreSSLUnitTests

More SSL unit tests.

07caac2a042c78af3d666a3b55997e7cc88bc0d8 authored almost 12 years ago
improved logging of server listener startup

c88a4b249cf383de05d4f295774648467f781bac authored almost 12 years ago
added missing newline escape in example java command

Notice during copy and paste testing of the examples.

2c4ea4f71afdc3d3b59301647e4d2af1a6738261 authored almost 12 years ago
replaced references to 'passphrase' with 'password'

4b1ea4d3759f45c6aeb83076d590fb131ed855e7 authored almost 12 years ago
replaced references to 'passphrase' with 'password'

652bbcc4b55b7947c92879c3e42bd7382fe23619 authored almost 12 years ago
Merge branch 'renameKeyStorePassphraseProperty' into LOGBACK-819

61aacaeace9071ef8c4d28f5d5e75b43264d3853 authored almost 12 years ago
renamed KeyStoreFactoryBean.passphrase to password

This is for consistency with the JDK documentation and system properties.

3e13664c5e308fa0a36c3435ddab53bbbc662d7d authored almost 12 years ago
fixed several html validation errors

f47b8dda01d89773401448f9a5d016bb9cfca36e authored almost 12 years ago
addressed various issues noted while testing SSL examples

ddd60634319ded93e1584d2152bb700c9d27465e authored almost 12 years ago
added examples and information on audit logging

50fd2114d777c614375863230b4f6eb223821dfd authored almost 12 years ago
fixed package name for example SocketServer

027342577e599032649b16103e93a8e891c17b79 authored almost 12 years ago
Support attribute "optional" in include element

Support attribute "optional" in include element to prevent errors on
inclusion of non-existent f...

c3a1f72c77990400a3b856e8d6699683d5cd7918 authored almost 12 years ago
removed unused SSL example classes and configuration

60d0fe9a258f8cf01f35f5e463a7bb0079700f16 authored almost 12 years ago
reorganized SSLSocketAppender examples to correspond to updated documentation

400b4d6dab796514a41c61431650523d246340aa authored almost 12 years ago
continued work on documentating SSLSocketAppender

These edits integrate the documentation for SSLSocketAppender with
SocketAppender, taking advant...

d1d4d6673af5d7d1960ba7a2e917158f5f5f2636 authored almost 12 years ago
Introducing AbstractDiscriminator base class to avoid repeated start()/stop() implementation in each concrete Discriminator

6be188ac67a9754405cafb5496afc8028604ad0f authored almost 12 years ago
added an example of using the SSL enabled components

ff6720d0ddf17e5fb8466380c4fb67c5df4da0d7 authored almost 12 years ago
continued work on documenting SSL configuration

d7e7a93920d713cbddf26f496cd483f8732764e8 authored almost 12 years ago
improved error logging in StreamClient

This should make it easier to diagnose SSL negotiation problems, in
particular.

675e8071f9bbe470e58f3a231bbed306824148a2 authored almost 12 years ago
Merge branch 'potentialNPEInSSLSocketAppenderBase' into LOGBACK-819

3a8a2a47c059ad956f4695e5d8cd7955360dba34 authored almost 12 years ago
initialize SocketServer.port to default used by SocketAppenderBase

The DEFAULT_PORT defined in SocketAppenderBase needed a public modifier
to allow it to be refere...

e156cf876df79211d98d490e3b6a7c8d9e365891 authored almost 12 years ago
improved doc comment for getSocketFactory method

5ac602d4b625fb033c140a7407c1ed9d878d0686 authored almost 12 years ago
added missing class header doc comments

871a04a84d4e8a704f1385caa027456489ed377d authored almost 12 years ago
fixed a potential NPE in SSLSocketAppenderBase

If the appender configuration did not specify an SSL configuration, an
NPE would occur in method...

3b6c804ce4d626d90d55009376bd3874d5cbd4d6 authored almost 12 years ago
improved error reporting when thread pool configuration is illegal

544c8c472721a431ad5565a12e34658d86d27fa3 authored almost 12 years ago
added nested component registry rule for SSL

The SSLSocketServer now allows an "ssl" element of type
SSLConfiguration.

676e983f935b7aa3e0472f2ac49dfa9fde11f237 authored almost 12 years ago
added nested component registry rules for SocketServer

Modified DefaultNestedComponentRules to include rules for SocketServer.

f4bcf84d0a8c47a57aa5e85c5449aee281fa96a1 authored almost 12 years ago
added ServerAction to JoranConfigurator

This commit allows a SocketServer to be configured in a Joran
configuration file.

10f202f02b29de3d98f20e6dc714c621a2b37e45 authored almost 12 years ago
added the SSLSocketServer implementation

This commit includes the server class itself, along with unit tests.

75e06846e1859de385a6480751577c105e05b1be authored almost 12 years ago
added the new SocketServer implementation

This commit includes the SocketServer, supporting classes, unit tests,
and a functional test for...

43fb53b27bf6352a6dca86d781753863f2bc25c5 authored almost 12 years ago
added unit tests for SSLContextFactoryBean

2c15bc5b25763170086d1cd849f76797eec367d7 authored almost 12 years ago
fixed content of an informational message

55348f39ae7ac3da776edec38d297ed47a0936d4 authored almost 12 years ago
added MockContextAware to allow testing of informational messages

f307b602d5c05214056a1634ddb977a957b76f70 authored almost 12 years ago
ensure that SSLConfiguration.getParameters() never returns null

This behavior is now documented for the method and validated with
a unit test.

80e321d7cea8674d5f7d5a2ac6a955392af8649c authored almost 12 years ago
renamed SSL configuration mocks to be consistent with base class names

e3d91e83a557ebe05464f108f965b00e0b3ab217 authored almost 12 years ago
Merge pull request #84 from ceharris/LOGBACK-818

LOGBACK-818: support for SSL-enabled socket appender and server

9933cd1cf0008d41efaa51a96b410fa4f04b7fd8 authored almost 12 years ago
year is 2013

c99078fcf7a7aede45434a110a0e6229e1fae05b authored almost 12 years ago
added Carl E Harris cla to the list

82fe92567c7cad6ce5f1b4ace4673037e0b3a1cf authored almost 12 years ago
Merge pull request #67 from The-Alchemist/master

LOGBACK-796 RollingFileAppender should have error when File matches FileNamePattern

f572714196a90125eb5d6773f1d529aa3e279d46 authored almost 12 years ago
rename FileNamePattern.toRegex(Date date) as toRegexForFixedDate(Date date)

bd4e72c8485981b7bef822dcc2c9e05a6737170a authored almost 12 years ago
added documentation for SSLSocketAppender to manual

This commit modifies appenders.html to include information about
SSLSocketAppender, and adds a u...

7341165cec2cfc0b0456bb2575e195ae7cd1c1e3 authored almost 12 years ago
added SSLSocketAppender to access

This commit adds the new appender and modifies the JoranConfigurator
to include rules for SSL co...

0d1cff82a6d79b83a8507426ba385c13a3d24236 authored almost 12 years ago
added SimpleSSLSocketServer to classic

This commit adds the new server and modifies SimpleSocketServer so
that its startup logic can al...

23eb6e417eaac342c9e476f64dec01a8ad09e7ab authored almost 12 years ago
added SSLSocketAppender to classic

This commit adds the new appender and modifies the
DefaultNestedComponent rules to include rules...

ce98eeaa8d601962c266f1bc222e036ff56d55d6 authored almost 12 years ago
added SSLSocketAppenderBase and supporting classes to core

In addition to the new base appender, this commit includes several
supporting classes that are u...

45c440b1f27e69dcdcc84be8230f65b2cea9b649 authored almost 12 years ago
Merge pull request #83 from ceharris/gitignore-hsqldb

added another hsqldb file to gitignore

b4e996d4bda562652cef7d7dae2ca30f8675b01f authored almost 12 years ago
added another hsqldb file to gitignore

8d21836340cf85f78ac59eb39828a7014a58820c authored almost 12 years ago
add cla for Andrey Korzhevskiy

fc8ae4f7c732b2bdf94d1196786fc329bc43a5b2 authored almost 12 years ago
cla image quality

1c49781bf9edb9e98303c13d341265e09355db0e authored almost 12 years ago
start work on 1.0.12-SNAPSHOT

281551b037fba6ae59f3fda8857193c1777c403a authored almost 12 years ago
minor changes

d41b804b270ed31a3f2338b2218d51fdc306fa2e authored almost 12 years ago
minor fix prior to release

28a154ddf8441efdac7be8327e7bb16511580294 authored almost 12 years ago
preparing release 1.0.11

77454005c4df08d940bbfe4c47fd2673189a9f5e authored almost 12 years ago
Add console status listener only if not present (LBANDROID-14)

Previously, error messages could be printed multiple times, which was
caused by allowing multipl...

bf9132cbdee82d5d5114ec196a6da23a6b80ce21 authored almost 12 years ago
typo fix

940234e77d22b170d3d5050e163e6a3131fad7fa authored almost 12 years ago
Merge pull request #80 from ceharris/LOGBACK-815

removed remaining call to new Socket() in reconnect (LOGBACK-815)

91a27b0ff0919207fdab79ce8752cbdb7b59559f authored almost 12 years ago
removed remaining call to new Socket() in reconnect (LOGBACK-815)

Missed one in previous commit.

6df2b1fe7b4cd839413ef766eaddc93d6671c504 authored almost 12 years ago
Delete unused fields from PackagingDataCalculator

The unused variables and methods in PackagingDataCalculator are now deleted.

LBANDROID-6

b18d876bd0fc4a1cf2974cb4b6c5a35206253fe1 authored almost 12 years ago
Remove unwritten fields in EchoEncoder

This change deletes the fileHeader and fileFooter fields from EchoEncoder.
They were not written...

9319a21595f48dfc3f983eaaf7171bd5eaa8a193 authored almost 12 years ago