agent-swarm-kit 1.0.226 → 1.0.227
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/build/index.cjs +3 -3
- package/build/index.mjs +3 -3
- package/package.json +1 -1
package/build/index.cjs
CHANGED
|
@@ -3016,7 +3016,7 @@ class LoggerService {
|
|
|
3016
3016
|
if (clientId) {
|
|
3017
3017
|
await this.getLoggerAdapter().log(clientId, topic, ...args, context);
|
|
3018
3018
|
}
|
|
3019
|
-
this._commonLogger.log(topic, ...args, context);
|
|
3019
|
+
await this._commonLogger.log(topic, ...args, context);
|
|
3020
3020
|
}, context);
|
|
3021
3021
|
};
|
|
3022
3022
|
/**
|
|
@@ -3045,7 +3045,7 @@ class LoggerService {
|
|
|
3045
3045
|
if (clientId) {
|
|
3046
3046
|
await this.getLoggerAdapter().debug(clientId, topic, ...args, context);
|
|
3047
3047
|
}
|
|
3048
|
-
this._commonLogger.debug(topic, ...args, context);
|
|
3048
|
+
await this._commonLogger.debug(topic, ...args, context);
|
|
3049
3049
|
}, context);
|
|
3050
3050
|
};
|
|
3051
3051
|
/**
|
|
@@ -3074,7 +3074,7 @@ class LoggerService {
|
|
|
3074
3074
|
if (clientId) {
|
|
3075
3075
|
await this.getLoggerAdapter().info(clientId, topic, ...args, context);
|
|
3076
3076
|
}
|
|
3077
|
-
this._commonLogger.info(topic, ...args, context);
|
|
3077
|
+
await this._commonLogger.info(topic, ...args, context);
|
|
3078
3078
|
}, context);
|
|
3079
3079
|
};
|
|
3080
3080
|
/**
|
package/build/index.mjs
CHANGED
|
@@ -3014,7 +3014,7 @@ class LoggerService {
|
|
|
3014
3014
|
if (clientId) {
|
|
3015
3015
|
await this.getLoggerAdapter().log(clientId, topic, ...args, context);
|
|
3016
3016
|
}
|
|
3017
|
-
this._commonLogger.log(topic, ...args, context);
|
|
3017
|
+
await this._commonLogger.log(topic, ...args, context);
|
|
3018
3018
|
}, context);
|
|
3019
3019
|
};
|
|
3020
3020
|
/**
|
|
@@ -3043,7 +3043,7 @@ class LoggerService {
|
|
|
3043
3043
|
if (clientId) {
|
|
3044
3044
|
await this.getLoggerAdapter().debug(clientId, topic, ...args, context);
|
|
3045
3045
|
}
|
|
3046
|
-
this._commonLogger.debug(topic, ...args, context);
|
|
3046
|
+
await this._commonLogger.debug(topic, ...args, context);
|
|
3047
3047
|
}, context);
|
|
3048
3048
|
};
|
|
3049
3049
|
/**
|
|
@@ -3072,7 +3072,7 @@ class LoggerService {
|
|
|
3072
3072
|
if (clientId) {
|
|
3073
3073
|
await this.getLoggerAdapter().info(clientId, topic, ...args, context);
|
|
3074
3074
|
}
|
|
3075
|
-
this._commonLogger.info(topic, ...args, context);
|
|
3075
|
+
await this._commonLogger.info(topic, ...args, context);
|
|
3076
3076
|
}, context);
|
|
3077
3077
|
};
|
|
3078
3078
|
/**
|