# qBittorrent logs

Starting with version 4.6.0, AxoSyslog can collect logs of the [qBittorrent](<https://www.qbittorrent.org/>) application.
```
 
    source s_qbittorrent {
      qbittorrent(
        dir("/path/to/qbittorrent-root-log-dir")
      );
    };
    
```

To configure the source, you only have to specify the root log directory of qBittorrent in the `dir()` parameter. You can find the root log directory by selecting **Tools > Preferences > Behavior > Log file > Save path** in the qBittorrent application. Otherwise, the `qbittorrent()` source has the same parameters as the [`file()` source](../../docs/axosyslog-core/chapter-sources/configuring-sources-file/reference-source-file/index.md).

The `qbittorrent()` driver is actually a reusable configuration snippet. For details on using or writing such configuration snippets, see [Reusing configuration blocks](../../docs/axosyslog-core/chapter-configuration-file/large-configs/config-blocks/index.md). You can find the source of this configuration snippet on [GitHub](<https://github.com/axoflow/axosyslog/tree/master/scl/qbittorrent>).

Last modified June 4, 2024: [More github link updates (13f3206e)](<https://github.com/axoflow/axosyslog-core-docs/commit/13f3206e659157ec0efc7371296867db7371b637>)