* Adds a single {@link Msg} to this panel.
* @param msg
* @param classifier optional classifier
*/
public void addMsg(Msg msg, Integer classifier) {
final P p = new P(msg.getMsg());
extract(getMsgLevelPanel(msg.getLevel(), true)).append(p);
bindings.put(new Entry(classifier, msg), p);
}