Difference between revisions of "SDK 6.3/PAWN/Logging"

From WowWiki
Jump to navigation Jump to search
(Official WOWCube SDK 6.3 documentation (automated publish from SDK headers))
(Mark PAWN API as legacy (supported, not developed) (WowBot))
 
Line 1: Line 1:
 
{{notice|'''Official WOWCube SDK documentation.''' SDK 6.3, PAWN API. Generated from the canonical SDK headers — do not edit by hand; regenerate from source.}}
 
{{notice|'''Official WOWCube SDK documentation.''' SDK 6.3, PAWN API. Generated from the canonical SDK headers — do not edit by hand; regenerate from source.}}
 +
{{notice|'''Legacy track.''' The PAWN API is supported but no longer actively developed — the last PAWN additions shipped in SDK 6.2. New development uses the [[SDK 6.3/C++/Native API|C++ (WebAssembly) API]].}}
  
 
{{SDK 6.3 nav}}
 
{{SDK 6.3 nav}}

Latest revision as of 09:45, 26 July 2026

Official WOWCube SDK documentation. SDK 6.3, PAWN API. Generated from the canonical SDK headers — do not edit by hand; regenerate from source.
Legacy track. The PAWN API is supported but no longer actively developed — the last PAWN additions shipped in SDK 6.2. New development uses the C++ (WebAssembly) API.

SDK 6.3 · PAWN API: Core · Graphics · Topology · Sound · Motion Sensor · Leaderboard · Splash Screen · Physics · Network · Save · Scramble · Logging
C++: Native API · Application · GFX Engine  ·  Rust: Rust API (experimental)  ·  Changelog

SDK 6.3 · PAWN / Logging

Functions

LOG_a

Syntax:

native LOG_a(const format[], {Float,Fixed,_}:...);

Description:

Print an assert log message and stop application execution.

Arguments:

format
format string
...
variable values to insert in the resulting string

LOG_e

Syntax:

native LOG_e(const format[], {Float,Fixed,_}:...);

Description:

Print an error log message.

Arguments:

format
format string
...
variable values to insert in the resulting string

LOG_w

Syntax:

native LOG_w(const format[], {Float,Fixed,_}:...);

Description:

Print a warning log message.

Arguments:

format
format string
...
variable values to insert in the resulting string

LOG_i

Syntax:

native LOG_i(const format[], {Float,Fixed,_}:...);

Description:

Print an information log message.

Arguments:

format
format string
...
variable values to insert in the resulting string

LOG_d

Syntax:

native LOG_d(const format[], {Float,Fixed,_}:...);

Description:

Print a debug log message.

Arguments:

format
format string
...
variable values to insert in the resulting string

LOG_v

Syntax:

native LOG_v(const format[], {Float,Fixed,_}:...);

Description:

Print a verbose log message.

Arguments:

format
format string
...
variable values to insert in the resulting string