You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the following ASP.NET CORE examples, the logger is used to create logs with `Information` as the level. The Log *level* indicates the severity of the logged event.
765
+
In the following example, the logger is used to create logs with `Information` as the level. The Log *level* indicates the severity of the logged event.
@@ -1601,6 +1605,7 @@ Navigate to the **Log Stream** page to view app messages. They're logged by the
1601
1605
1602
1606
The [Microsoft.Extensions.Logging.ApplicationInsights](https://www.nuget.org/packages/Microsoft.Extensions.Logging.ApplicationInsights) provider package writes logs to Azure Application Insights. Application Insights is a service that monitors a web app and provides tools for querying and analyzing the telemetry data. If you use this provider, you can query and analyze your logs by using the Application Insights tools.
1603
1607
1608
+
Theproviderpackageisn't included in the shared framework. To use the provider, add the provider package to the project.
1604
1609
Theloggingproviderisincludedasadependencyof [Microsoft.ApplicationInsights.AspNetCore](https://www.nuget.org/packages/Microsoft.ApplicationInsights.AspNetCore), which is the package that provides all available telemetry for ASP.NET Core. If you use this package, you don't have to install the provider package.
1605
1610
1606
1611
Don't use the [Microsoft.ApplicationInsights.Web](https://www.nuget.org/packages/Microsoft.ApplicationInsights.Web) package—that'sforASP.NET4.x.
@@ -1633,7 +1638,7 @@ Some third-party frameworks can perform [semantic logging, also known as structu
0 commit comments