5859606162636465666768
public void run() { try { while (true) { LogEvent next = this.queue.take(); if (next != null) { next.post(this.writer); } } } catch (Exception ex) { ex.printStackTrace(System.err); }