# LogLine Properties

- Package: [Aspire.Hosting](/reference/api/csharp/aspire.hosting.md)
- Type: [LogLine](/reference/api/csharp/aspire.hosting/logline.md)
- Kind: `Properties`
- Members: `3`

Represents a console log line.

## Content

- Name: `Content`
- Modifiers: `get; init`
- Returns: `string`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/bd20f904cde09ecb9c9ae5116a6f13614bf2d7c2/src/Aspire.Hosting/ApplicationModel/LogLine.cs)

The content.

```csharp
public string Content { get; init; }
```

## IsErrorMessage

- Name: `IsErrorMessage`
- Modifiers: `get; init`
- Returns: `bool`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/bd20f904cde09ecb9c9ae5116a6f13614bf2d7c2/src/Aspire.Hosting/ApplicationModel/LogLine.cs)

A value indicating whether the log line is error output.

```csharp
public bool IsErrorMessage { get; init; }
```

## LineNumber

- Name: `LineNumber`
- Modifiers: `get; init`
- Returns: `int`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/bd20f904cde09ecb9c9ae5116a6f13614bf2d7c2/src/Aspire.Hosting/ApplicationModel/LogLine.cs)

The line number.

```csharp
public int LineNumber { get; init; }
```
