scheduler-services 1.5.10 → 1.5.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/logService.js +1 -1
- package/package.json +1 -1
package/logService.js
CHANGED
|
@@ -196,7 +196,7 @@ class LogService {
|
|
|
196
196
|
if (sqldb_1.mdbConnection.pool) {
|
|
197
197
|
conn = await sqldb_1.mdbConnection.pool.getConnection();
|
|
198
198
|
const sql = "SELECT * FROM logentries WHERE application = ? AND messageid >= '?' "
|
|
199
|
-
+ "AND messageid
|
|
199
|
+
+ "AND messageid < '?' ORDER BY messageid;";
|
|
200
200
|
const logVals = [application, this.convertDate(start), this.convertDate(end)];
|
|
201
201
|
const results = await conn.query(sql, logVals);
|
|
202
202
|
results.forEach((row) => {
|