mirror of
https://github.com/thewesker/RASCSI.git
synced 2025-12-20 12:21:10 -05:00
32 lines
722 B
C++
32 lines
722 B
C++
//---------------------------------------------------------------------------
|
|
//
|
|
// SCSI Target Emulator RaSCSI (*^..^*)
|
|
// for Raspberry Pi
|
|
//
|
|
// Powered by XM6 TypeG Technology.
|
|
// Copyright (C) 2016-2018 GIMONS
|
|
// [ ログ ]
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
#if !defined(log_h)
|
|
#define log_h
|
|
|
|
//===========================================================================
|
|
//
|
|
// ログ
|
|
//
|
|
//===========================================================================
|
|
class Log
|
|
{
|
|
public:
|
|
enum loglevel {
|
|
Detail, // 詳細レベル
|
|
Normal, // 通常レベル
|
|
Warning, // 警告レベル
|
|
Debug // デバッグレベル
|
|
};
|
|
};
|
|
|
|
#endif // log_h
|