+ constructor(config) {
+
+ /**
+ * Flag that tells us whether or not to use ANSI color. Defaults to
+ * false.
+ *
+ * @name colorize
+ * @instance
+ * @memberof Formatters.Simple
+ * @type Boolean
+ * @default false
+ */
+ this.colorize = false;
+
+ Object.assign(this, config || {});
+ }
+
+ /**
+ * Main entry point, it will read the incoming log object and convert
+ * it to the output string.
+ *
+ * @function format
+ * @instance
+ * @memberof Formatters.Simple
+ * @param {tCologneLog} logObjet the log to format
+ * @return {String} the formatted object
+ */
+ format(logObject) {
+
+ const date = (new Date(Number(logObject._timestamp) / 1000000)).toISOString();
+ const levelString = this._colorize(logObject._levelString, logObject._level);
+
+ return `[${date}][${levelString}] ${logObject._from}: ${logObject.message}`;
+ }
+
+ _colorize(levelString, level) {
+
+ if (!this.colorize) {
+ return levelString;