diff --git a/Node/core/lib/bots/Library.js b/Node/core/lib/bots/Library.js index 27e06290e6..0c5f197bcd 100644 --- a/Node/core/lib/bots/Library.js +++ b/Node/core/lib/bots/Library.js @@ -132,7 +132,7 @@ var Library = (function (_super) { }); } else { - ctx.logger.warn(ctx.dialogStack(), "Active dialog '" + entry.id + "' not found in library."); + context.logger.warn(context.dialogStack(), "Active dialog '" + entry.id + "' not found in library."); callback(null, results); } } diff --git a/Node/core/package.json b/Node/core/package.json index 6d098bf805..8c67aab3aa 100644 --- a/Node/core/package.json +++ b/Node/core/package.json @@ -2,7 +2,7 @@ "name": "botbuilder", "author": "Microsoft Corp.", "description": "Bot Builder is a dialog system for building rich bots on virtually any platform.", - "version": "3.10.0", + "version": "3.10.1", "license": "MIT", "keywords": [ "botbuilder", diff --git a/Node/core/src/bots/Library.ts b/Node/core/src/bots/Library.ts index cd9420b783..15589bc8fd 100644 --- a/Node/core/src/bots/Library.ts +++ b/Node/core/src/bots/Library.ts @@ -224,7 +224,7 @@ export class Library extends EventEmitter { } }); } else { - ctx.logger.warn(ctx.dialogStack(), "Active dialog '" + entry.id + "' not found in library."); + context.logger.warn(context.dialogStack(), "Active dialog '" + entry.id + "' not found in library."); callback(null, results); } } else {