Constructor cons = c.getConstructor(Blog.class);
this.logger = (AbstractLogger)cons.newInstance(this);
} catch (Exception e) {
error("Could not start logger \"" + getLoggerName() + "\"");
e.printStackTrace();
this.logger = new CombinedLogFormatLogger(this);
}
}