attlaz-client 1.16.0 → 1.16.1
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/dist/Model/Log/Log.js +1 -1
- package/package.json +1 -1
package/dist/Model/Log/Log.js
CHANGED
|
@@ -23,7 +23,7 @@ export class Log {
|
|
|
23
23
|
static parse(rawLog) {
|
|
24
24
|
const date = Utils.parseRawDate(rawLog.date);
|
|
25
25
|
const level = LogLevel.fromString(rawLog.level);
|
|
26
|
-
const logStream = new LogStreamId(rawLog.log_stream
|
|
26
|
+
const logStream = new LogStreamId(rawLog.log_stream);
|
|
27
27
|
const log = new Log(logStream, rawLog.message, level, date);
|
|
28
28
|
log.id = rawLog.id;
|
|
29
29
|
log.context = rawLog.context;
|