We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ff403c commit 977fc26Copy full SHA for 977fc26
lib/oracle.js
@@ -41,7 +41,7 @@ class OracleDB {
41
try {
42
return await this.connection.execute(sql, bindParams, options);
43
} catch (err) {
44
- this.log(err.message);
+ this.log.error(err.message);
45
this.getConnection();
46
}
47
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "egg-oracle",
3
- "version": "1.0.2",
+ "version": "1.0.3",
4
"description": "Oracle database plugin for egg",
5
"eggPlugin": {
6
"name": "oracle"
@@ -17,10 +17,10 @@
17
},
18
"devDependencies": {
19
"autod": "^2.8.0",
20
- "egg": "^1.4.0",
21
- "egg-bin": "^3.6.0",
22
- "egg-ci": "^1.7.0",
23
- "egg-mock": "^3.7.2",
+ "egg": "^1.5.0",
+ "egg-bin": "^4.0.4",
+ "egg-ci": "^1.8.0",
+ "egg-mock": "^3.8.0",
24
"eslint": "^4.0.0",
25
"eslint-config-egg": "^4.2.1",
26
"supertest": "^3.0.0",
0 commit comments