# Quickstart

Here's the simplest way to experience Vostok.Logging for the first time:

* Install [console](https://vostok.gitbook.io/logging/modules/console#source-and-packages) and [abstractions](https://vostok.gitbook.io/logging/modules/abstractions) modules:

```
Install-Package Vostok.Logging.Console
Install-Package Vostok.Logging.Abstractions
```

* Create a log instance and write your first message:

```csharp
var consoleLog = new SynchronousConsoleLog();

consoleLog.Info("Hello, {Name}!", "%username%");
```

Well done! Next step is to learn about logging [syntax](https://vostok.gitbook.io/logging/concepts/syntax), explore available [modules](https://vostok.gitbook.io/logging/modules) and log [implementations](https://vostok.gitbook.io/logging/implementations) and get used to the notion of [source context](https://vostok.gitbook.io/logging/concepts/source-context).
