namespace LanMountainDesktop.AirAppSdk;
///
/// Logger interface for AirApps.
///
public interface IAirAppLogger
{
///
/// Log a debug message.
///
void Debug(string message);
///
/// Log an informational message.
///
void Info(string message);
///
/// Log a warning message.
///
void Warn(string message);
///
/// Log a warning with exception.
///
void Warn(string message, Exception exception);
///
/// Log an error message.
///
void Error(string message);
///
/// Log an error with exception.
///
void Error(string message, Exception exception);
}