Comparing version 1.0.13 to 1.0.14
{ | ||
"name": "meadow", | ||
"version": "1.0.13", | ||
"version": "1.0.14", | ||
"description": "A data access library.", | ||
@@ -5,0 +5,0 @@ "main": "source/Meadow.js", |
@@ -18,2 +18,5 @@ // ##### Part of the **[retold](https://stevenvelozo.github.io/retold/)** system | ||
var _Fable = pFable; | ||
var _GlobalLogLevel = 0; | ||
if (_Fable.settings.MySQL) | ||
_GlobalLogLevel = _Fable.settings.MySQL.GlobalLogLevel || 0; | ||
@@ -64,3 +67,4 @@ /** | ||
// TODO: Test the query before executing | ||
if (pQuery.logLevel > 0) | ||
if (pQuery.logLevel > 0 || | ||
_GlobalLogLevel > 0) | ||
{ | ||
@@ -102,3 +106,4 @@ _Fable.log.trace(pQuery.query.body, pQuery.query.parameters); | ||
if (pQuery.logLevel > 0) | ||
if (pQuery.logLevel > 0 || | ||
_GlobalLogLevel > 0) | ||
{ | ||
@@ -129,3 +134,4 @@ _Fable.log.trace(pQuery.query.body, pQuery.query.parameters); | ||
if (pQuery.logLevel > 0) | ||
if (pQuery.logLevel > 0 || | ||
_GlobalLogLevel > 0) | ||
{ | ||
@@ -156,3 +162,4 @@ _Fable.log.trace(pQuery.query.body, pQuery.query.parameters); | ||
if (pQuery.logLevel > 0) | ||
if (pQuery.logLevel > 0 || | ||
_GlobalLogLevel > 0) | ||
{ | ||
@@ -191,3 +198,4 @@ _Fable.log.trace(pQuery.query.body, pQuery.query.parameters); | ||
if (pQuery.logLevel > 0) | ||
if (pQuery.logLevel > 0 || | ||
_GlobalLogLevel > 0) | ||
{ | ||
@@ -194,0 +202,0 @@ _Fable.log.trace(pQuery.query.body, pQuery.query.parameters); |
@@ -23,6 +23,6 @@ /** | ||
// This is queued up for Travis defaults. | ||
Server: "192.168.99.100", | ||
Server: "localhost", | ||
Port: 3306, | ||
User: "admin", | ||
Password: "zKVMD14cPC5N", | ||
User: "root", | ||
Password: "", | ||
Database: "FableTest", | ||
@@ -29,0 +29,0 @@ ConnectionPoolLimit: 20 |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
89927
3076