# Logger(Char\[], LogType, Int32)

{% code title="Declaration" %}

```csharp
public static void Logger(char[] value, LogType logType, int logLevel)
```

{% endcode %}

{% code title="Example" %}

```csharp
engine.Logger(new char[] { 'A', '*' }, LogType.Debug, 0);
```

{% endcode %}

{% code title="Result" %}

```
Debug|0|ID0|Logger_Char_Array_Test|A*
```

{% 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.char">Char</a>[]</td><td>value</td><td>A Unicode character array.</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>
