10#include <source_location>
80RETINIFY_API auto
LogDebug(const
char *message, std::source_location location = std::source_location::current()) noexcept ->
void;
88RETINIFY_API auto
LogInfo(const
char *message, std::source_location location = std::source_location::current()) noexcept ->
void;
96RETINIFY_API auto
LogWarn(const
char *message, std::source_location location = std::source_location::current()) noexcept ->
void;
104RETINIFY_API auto
LogError(const
char *message, std::source_location location = std::source_location::current()) noexcept ->
void;
112RETINIFY_API auto
LogFatal(const
char *message, std::source_location location = std::source_location::current()) noexcept ->
void;
128RETINIFY_API auto
LogStrideError(std::
size_t providedStride, std::
size_t requiredStride, std::source_location location = std::source_location::current()) noexcept ->
void;
#define RETINIFY_API
Defines a macro for setting API visibility to "default" for the retinify library.
Definition attributes.hpp:8
Definition colormap.hpp:13
RETINIFY_API auto LogWarn(const char *message, std::source_location location=std::source_location::current()) noexcept -> void
Logs a warning message.
RETINIFY_API auto LogDebug(const char *message, std::source_location location=std::source_location::current()) noexcept -> void
Logs a debug message.
RETINIFY_API auto GetLogLocation() noexcept -> LogLocation
Returns the current log location setting.
RETINIFY_API auto LogStrideError(std::size_t providedStride, std::size_t requiredStride, std::source_location location=std::source_location::current()) noexcept -> void
Logs an error indicating that the provided stride is smaller than the required stride.
LogLocation
Logging source location options.
Definition logging.hpp:53
@ NONE
No source location.
RETINIFY_API auto SetLogLocation(LogLocation location) noexcept -> void
Sets the log location setting.
RETINIFY_API auto GetLogLevel() noexcept -> LogLevel
Returns the current log level.
RETINIFY_API auto LogFatal(const char *message, std::source_location location=std::source_location::current()) noexcept -> void
Logs a fatal error message.
RETINIFY_API auto LogSoftwareInfo(std::source_location location=std::source_location::current()) noexcept -> void
Logs basic information about the retinify library.
RETINIFY_API auto LogInfo(const char *message, std::source_location location=std::source_location::current()) noexcept -> void
Logs an informational message.
RETINIFY_API auto SetLogLevel(LogLevel level) noexcept -> void
Sets the log level.
LogLevel
Logging verbosity levels.
Definition logging.hpp:17
@ FATAL
Fatal Error messages.
@ INFO
Informational messages.
@ OFF
Disable all logging.
RETINIFY_API auto LogError(const char *message, std::source_location location=std::source_location::current()) noexcept -> void
Logs an error message.