1
0
forked from BRT/arc
arc/services/AppLogger.h
slava 73e23f437d Add Ozon pay_to_new_number and pay_to_old_number XML assets
Included XML files for the "pay to new number" and "pay to old number" features in the Ozon platform.
2026-03-01 12:02:37 +07:00

14 lines
259 B
C++

#pragma once
#include <QString>
#include <QByteArray>
class AppLogger {
public:
static void log(
const QString &source,
const QString &deviceId,
const QString &message,
const QByteArray &screenshot = {}
);
};