<div dir="ltr">Hi all,<div><br></div><div style>Cursory googling/ML search didn't turn anything up so I thought I'd ask a (possibly dumb) question.</div><div style><br></div><div style>I'm working on a custom encoder (tried a LayoutBase as well, same issue described below) in order to output JSON formatted log messages.  The reason I'm going down this particular route vs using the existing JSON layout extension is that for some messages, I need to append additional sub documents (log messages will go through logstash to ElasticSearch and possibly HDFS).  My issue:  I don't seem to be receiving "ERROR" level messages in my encoder although the same test code using a pattern layout seems to pass through error messages just fine.  Simple encoder implementation (in Scala but should be intelligible regardless) follows, JSON stuff absent:</div>
<div style><br></div><div style><div>class SimpleEncoder[T] extends EncoderBase[T] {</div><div>  override def close() {}</div><div><br></div><div>  override def doEncode(event: T) {</div><div>    event match {</div><div>      case loggingEvent: ILoggingEvent => {</div>
<div>         outputStream.write(loggingEvent.getArgumentArray().head.toString.getBytes())</div><div><span class="" style="white-space:pre">         </span>outputStream.flush()</div><div>      }</div><div>      case other => {</div>
<div><span class="" style="white-space:pre">     </span>outputStream.write(s"OTHER:  ${other}".getBytes())</div><div><span class="" style="white-space:pre">      </span> outputStream.flush()</div><div>      }</div><div>
    }</div><div>  }  </div><div>}</div><div><br></div><div style>logback.xml:</div><div style><br></div><div style><div><configuration></div><div>  <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"></div>
<div>    <encoder class="com.sample.logging.SimpleEncoder"/></div><div>  </appender></div><div><br></div><div>  <root level="DEBUG"></div><div>    <appender-ref ref="STDOUT" /></div>
<div>  </root></div><div></configuration></div><div><br></div><div style>Am I missing anything obvious?</div><div style><br></div><div style>Thanks,</div><div style><br></div><div style>Jeremy</div></div></div>
</div>