• Workshop at the Neos Conference 2018

    The Neos Conference 2018 in Hamburg is just two weeks away, as is the workshop we are giving on the day before. And tickets are still available!

    On April 13th the Neos Conference 2018 starts and will bring you two days of Neos talks, networking and an all-around great experience. And on the day before, April 12th, we will hold a pre-conference workshop.

  • Logging from Groovy in Elasticsearch

    When working on the fulltext indexing for the Elasticsearch integration for Neos I recently needed a way to debug what was going on inside a Groovy script we use. It's relatively simple, if you know how…

    As soon as such a need arises, finding the solution with a quick internet search yields a quick result along these lines:

    import  org.elasticsearch.common.logging.*;
    ESLogger logger=ESLoggerFactory.getLogger('some.identifier');
    logger.info('Ah, a log message!');