mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-20 19:57:45 +00:00
Astra's own logs are now stored in a rotating log, the default message format is improved. The client and DXVK now dump their logs in the same place instead of in the game directory.
14 lines
No EOL
326 B
C++
14 lines
No EOL
326 B
C++
// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <QDir>
|
|
#include <QNetworkRequest>
|
|
|
|
namespace Utility
|
|
{
|
|
QDir stateDirectory();
|
|
QString toWindowsPath(const QDir &dir);
|
|
void printRequest(const QString &type, const QNetworkRequest &request);
|
|
} |