- Notifications
You must be signed in to change notification settings - Fork 843
/
Copy pathAdapterWithErrorHandler.cs
37 lines (33 loc) · 1.69 KB
/
AdapterWithErrorHandler.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
//
// Generated with Bot Builder V4 SDK Template for Visual Studio CoreBot v4.6.2
usingMicrosoft.Bot.Builder.Integration.AspNet.Core;
usingMicrosoft.Bot.Builder.TraceExtensions;
usingMicrosoft.Extensions.Configuration;
usingMicrosoft.Extensions.Logging;
namespaceMicrosoft.Teams.Samples.HelloWorld.Web
{
publicclassAdapterWithErrorHandler:BotFrameworkHttpAdapter
{
publicAdapterWithErrorHandler(IConfigurationconfiguration,ILogger<BotFrameworkHttpAdapter>logger)
:base(configuration,logger)
{
OnTurnError=async(turnContext,exception)=>
{
// Log the unhandled exception.
// Be mindful not to expose sensitive information in production environments.
logger.LogError(exception,$"[OnTurnError] unhandled error: {exception.Message}");
// Uncomment below for local debugging purposes.
// It’s recommended to only send error messages to the user in development environments.
// if (environment.IsDevelopment())
// {
// await turnContext.SendActivityAsync($"Sorry, it looks like something went wrong. Exception Caught: {exception.Message}");
// }
// Send a trace activity to the Bot Framework Emulator, useful for debugging.
// You can view this activity in the Emulator's Debug console.
awaitturnContext.TraceActivityAsync("OnTurnError Trace",exception.Message,"https://www.botframework.com/schemas/error","TurnError");
};
}
}
}