aboutsummaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/karma/lib/constants.js
diff options
context:
space:
mode:
Diffstat (limited to 'vnfmarket/src/main/webapp/vnfmarket/node_modules/karma/lib/constants.js')
-rw-r--r--vnfmarket/src/main/webapp/vnfmarket/node_modules/karma/lib/constants.js30
1 files changed, 30 insertions, 0 deletions
diff --git a/vnfmarket/src/main/webapp/vnfmarket/node_modules/karma/lib/constants.js b/vnfmarket/src/main/webapp/vnfmarket/node_modules/karma/lib/constants.js
new file mode 100644
index 00000000..dd980b37
--- /dev/null
+++ b/vnfmarket/src/main/webapp/vnfmarket/node_modules/karma/lib/constants.js
@@ -0,0 +1,30 @@
+var fs = require('fs')
+
+var pkg = JSON.parse(fs.readFileSync(__dirname + '/../package.json').toString())
+
+exports.VERSION = pkg.version
+
+exports.DEFAULT_PORT = process.env.PORT || 9876
+exports.DEFAULT_HOSTNAME = process.env.IP || 'localhost'
+
+// log levels
+exports.LOG_DISABLE = 'OFF'
+exports.LOG_ERROR = 'ERROR'
+exports.LOG_WARN = 'WARN'
+exports.LOG_INFO = 'INFO'
+exports.LOG_DEBUG = 'DEBUG'
+
+// Default patterns for the pattern layout.
+exports.COLOR_PATTERN = '%[%p [%c]: %]%m'
+exports.NO_COLOR_PATTERN = '%p [%c]: %m'
+
+// Default console appender
+exports.CONSOLE_APPENDER = {
+ type: 'console',
+ layout: {
+ type: 'pattern',
+ pattern: exports.COLOR_PATTERN
+ }
+}
+
+exports.EXIT_CODE = '\x1FEXIT'