# Logger(Decimal, LogType, Int32)

{% code title="Declaration" %}

```csharp
public static void Logger(decimal value, LogType logType, int logLevel)
```

{% endcode %}

{% code title="Example" %}

```csharp
engine.Logger(6.9M, LogType.Information, -1);
```

{% endcode %}

{% code title="Result" %}

```
Information|-1|ID0|Logger_Decimal_Test|6.9
```

{% endcode %}

<table><thead><tr><th width="134.33333333333331">Type</th><th width="114">Name</th><th>Description</th></tr></thead><tbody><tr><td><a href="https://learn.microsoft.com/dotnet/api/system.decimal">Decimal</a></td><td>value</td><td>The value to write.</td></tr><tr><td><a href="https://docs.dataminer.services/develop/api/types/Skyline.DataMiner.Automation.LogType.html">LogType</a></td><td>logType</td><td>Specifies the log type.</td></tr><tr><td><a href="https://learn.microsoft.com/dotnet/api/system.int32">Int32</a></td><td>logLevel</td><td>Specifies the log level.</td></tr></tbody></table>
