Raven Engine v0.1
A modern 3D Game Engine
Loading...
Searching...
No Matches
Raven::Script::Log::Internal Namespace Reference

Internal ABI-stable log sinks. Prefer the typed templates below. More...

Functions

void Debug_Internal (std::string_view message)
 Forwards to Logger::Debug.
void Info_Internal (std::string_view message)
 Forwards to Logger::Info.
void Warning_Internal (std::string_view message)
 Forwards to Logger::Warning.
void Error_Internal (std::string_view message)
 Forwards to Logger::Error.
void Critical_Internal (std::string_view message)
 Forwards to Logger::Critical.

Detailed Description

Internal ABI-stable log sinks. Prefer the typed templates below.

These functions cross the DLL boundary and forward to the engine's Logger. Direct use from scripts is discouraged; use Debug, Info, etc. instead.

Function Documentation

◆ Critical_Internal()

IGNITE_API void Raven::Script::Log::Internal::Critical_Internal ( std::string_view m)

Forwards to Logger::Critical.

◆ Debug_Internal()

IGNITE_API void Raven::Script::Log::Internal::Debug_Internal ( std::string_view m)

Forwards to Logger::Debug.

◆ Error_Internal()

IGNITE_API void Raven::Script::Log::Internal::Error_Internal ( std::string_view m)

Forwards to Logger::Error.

◆ Info_Internal()

IGNITE_API void Raven::Script::Log::Internal::Info_Internal ( std::string_view m)

Forwards to Logger::Info.

◆ Warning_Internal()

IGNITE_API void Raven::Script::Log::Internal::Warning_Internal ( std::string_view m)

Forwards to Logger::Warning.