Michael Strasser

Results 34 comments of Michael Strasser

@robertwe I have had the same problem with `java-junit`. My diagnosis is that Gradle is caching outputs and, if test sources don’t change then tests are not re-run. This means...

@kyhule My workaround is to use https://github.com/andstor/file-existence-action to check if there are test result files in `./build/test-results/test/*.xml` and only run `test-reporter` if they exist. As an example, see [this snippet...

Hi Karol, I have done a bit more work in the LDAP context and found the following. This LDAP bind request: ``` ldapsearch -D "o=Telstra" -w ess -b "msisdn=61414284256,o=Telstra" "(objectClass=*)"...

Hi Karol, I have an alternative for my need – an LDAP stub server for performance testing. I found I can use a pure Ruby solution by modifying the example...

Re-reading Splunk docs, especially on event metadata, I have a better understanding of the meaning of `sourcetype` and `source` keys.

Hi @bddckr, thanks for trying Klogging! In answer to your question about message templates, I checked the spec and how much I implemented. I have updated [the documentation](https://klogging.io/docs/concepts/message-templates) with details....

I am aware that it customer renderers are a bit tricky to implement. Possible with configuration DSL but not with JSON files. The `RENDER_ANSI` renderer is modelled on a Log4J...

I believe the changes in #211 (i.e. changing `RenderString` and `EventSender` from functional types to interfaces) provide this need.

@cwrau I have extracted console rendering of event items and stack trace, as you can see from the above commit. That should make it simpler for you to create the...

Where were you trying to publish the library? I have included the new changes in version 0.7.1 of Klogging. If it is not available from Maven Central yet, you can...