Skip to content

Commit 7c696b4

Browse files
authored
Add tabs to page
Let's see how this looks. We probably will also need to switch to alpha order. ------- cc: @ahmedelnably
1 parent 4a4682f commit 7c696b4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/azure-functions/functions-monitor-log-analytics.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,31 +33,31 @@ In the setting page, choose **Send to Log Analytics**, and under **LOG** choose
3333

3434
To generate custom logs, you can use the specific logging statement depending on your language, here are sample code snippets:
3535

36-
**JavaScript**
36+
# [JavaScript](#tab/javascript)
3737

3838
```javascript
3939
context.log('My app logs here.');
4040
```
4141

42-
**Python**
42+
# [Python](#tab/python)
4343

4444
```python
4545
logging.info('My app logs here.')
4646
```
4747

48-
**.NET**
48+
# [C#](#tab/csharp)
4949

5050
```csharp
5151
log.LogInformation("My app logs here.");
5252
```
5353

54-
**Java**
54+
# [Java](#tab/java)
5555

5656
```java
5757
context.getLogger().info("My app logs here.");
5858
```
5959

60-
**PowerShell**
60+
# [PowerShell](#tab/powershell)
6161

6262
```powershell
6363
Write-Host "My app logs here."

0 commit comments

Comments
 (0)