bdy 1.14.6-stage → 1.14.7-dev
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/distTs/package.json
CHANGED
|
@@ -206,6 +206,10 @@ class AgentManagerClass {
|
|
|
206
206
|
return;
|
|
207
207
|
}
|
|
208
208
|
logger_1.default.setDebug(!!data.debug);
|
|
209
|
+
logger_1.default.info(`MANAGER REQUEST: change debug to ${!!data.debug}`);
|
|
210
|
+
this.serverOutput(res, {
|
|
211
|
+
success: true,
|
|
212
|
+
});
|
|
209
213
|
}
|
|
210
214
|
async processTunnelStop(req, res) {
|
|
211
215
|
if (!this.agent) {
|
package/distTs/src/logger.js
CHANGED