2022-11-11 20:08:48 +00:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
2022-12-05 17:58:23 +00:00
|
|
|
// SCSI Target Emulator PiSCSI
|
2022-11-11 20:08:48 +00:00
|
|
|
// for Raspberry Pi
|
|
|
|
//
|
2023-10-15 06:38:15 +00:00
|
|
|
// Copyright (C) 2022-2023 Uwe Seimet
|
2022-11-11 20:08:48 +00:00
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2023-10-15 06:38:15 +00:00
|
|
|
#include "spdlog/spdlog.h"
|
2022-11-11 20:08:48 +00:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
class DeviceLogger
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
DeviceLogger() = default;
|
|
|
|
~DeviceLogger() = default;
|
|
|
|
|
|
|
|
void Trace(const string&) const;
|
|
|
|
void Debug(const string&) const;
|
|
|
|
void Info(const string&) const;
|
|
|
|
void Warn(const string&) const;
|
|
|
|
void Error(const string&) const;
|
|
|
|
|
|
|
|
void SetIdAndLun(int, int);
|
|
|
|
static void SetLogIdAndLun(int, int);
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2023-10-15 06:38:15 +00:00
|
|
|
void Log(spdlog::level::level_enum, const string&) const;
|
|
|
|
|
2022-11-11 20:08:48 +00:00
|
|
|
int id = -1;
|
|
|
|
int lun = -1;
|
|
|
|
|
|
|
|
// TODO Try to only have one shared instance, so that these fields do not have to be static
|
|
|
|
static inline int log_device_id = -1;
|
|
|
|
static inline int log_device_lun = -1;
|
|
|
|
};
|