Updated skeleton to added critical.

modified db.import to support multiple packages
This commit is contained in:
NotZippy
2017-10-07 21:39:13 -07:00
parent aa9e0f8600
commit 637ccbd250
2 changed files with 6 additions and 4 deletions

View File

@@ -95,7 +95,7 @@ i18n.default_language = en
# Module to serve static content such as CSS, JavaScript and Media files
# Allows Routes like this:
# `Static.ServeModule("modulename","public")`
module.static=github.com/revel/modules/static
module.static = github.com/revel/modules/static
@@ -172,6 +172,7 @@ module.testrunner = github.com/revel/modules/testrunner
# Log to file.
log.all.filter.module.app = stdout # Log all loggers for the application to the stdout
log.error.nfilter.module.app = stderr # Everything else that logs an error to stderr
log.crit.output = stderr # Everything that logs something as critical goes to this
# Revel request access log
# Access log line format:
@@ -196,8 +197,9 @@ watch = false
module.testrunner =
log.warn.output = log/%(app.name)s.log # Log all loggers for the application to the stdout
log.error.output = log/%(app.name)s.log # Log all errors to the stdout
log.warn.output = log/%(app.name)-warn.json # Log all warn messages to file
log.error.output = log/%(app.name)-error.json # Log all errors to file
log.crit.output = log/%(app.name)-critical.json # Log all critical to file
# Revel request access log (json format)
# Example: