Skip to content

Commit 13e097a

Browse files
committed
acrolinx
1 parent 80ea392 commit 13e097a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/container-apps/javascript-overview.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ In Azure Container Apps, both `console.log` and `console.error` calls are automa
311311
### Setting Up Logging in Azure Container Apps
312312

313313

314-
To ensure that your logs are properly captured and accessible, you need to configure diagnostic settings for your Azure Container App. Set up is a two-step process.
314+
To ensure that your logs are properly captured and accessible, you need to configure diagnostic settings for your Azure Container App. Setup is a two-step process.
315315

316316
1. Enable Diagnostic Settings: Use the Azure CLI to enable diagnostic settings for your Azure Container App.
317317

@@ -332,7 +332,7 @@ To ensure that your logs are properly captured and accessible, you need to confi
332332
333333
While `console.log` and `console.error` are automatically captured, using a logging library like Winston provides more flexibility and control over your logging. This flexibility allows you to format logs, set log levels, and output logs to multiple destinations like files or external logging services.
334334
335-
The following example demonstrates how configure use Winston to store high-fidelity logs.
335+
The following example demonstrates how to configure use Winston to store high-fidelity logs.
336336
337337
```typescript
338338
// src/logger.ts
@@ -500,7 +500,7 @@ Use [remote debugging](#remote-debugging) tools to connect to your running conta
500500

501501
### Health checks
502502

503-
Configure health checks to monitor the health of your application. This ensures that Azure Container Apps can restart your container if it becomes unresponsive.
503+
Configure health checks to monitor the health of your application. This feature ensures that Azure Container Apps can restart your container if it becomes unresponsive.
504504

505505
```yaml
506506
# Azure Container Apps YAML configuration

0 commit comments

Comments
 (0)