Add API Framework Revel Source Files
[iec.git] / src / foundation / api / revel / logger / doc.go
diff --git a/src/foundation/api/revel/logger/doc.go b/src/foundation/api/revel/logger/doc.go
new file mode 100644 (file)
index 0000000..0f6156a
--- /dev/null
@@ -0,0 +1,15 @@
+/*
+  Package logger contains filters and handles for the logging utilities in Revel.
+  These facilities all currently use the logging library called log15 at
+  https://github.com/inconshreveable/log15
+
+       Defining handlers happens as follows
+       1) ALL handlers (log.all.output) replace any existing handlers
+       2) Output handlers (log.error.output) replace any existing handlers
+       3) Filter handlers (log.xxx.filter, log.xxx.nfilter) append to existing handlers,
+          note log.all.filter is treated as a filter handler, so it will NOT replace existing ones
+
+
+
+*/
+package logger