WOWCube Docs logo
WOWCube Docs
Mission Control
Section Shortcuts
APIExamplesSourceWOWConnectChangelog
Filters
SDK and language defaults persist in cookies.
SDK version
Navigation Tree
Collapsed by default, focused on the active path.
Made byMcKay Seamons
GitHub
  1. Home
  2. Docs
  3. API
  4. Logging
Mission NodeSDK 6.1C++API Reference

Logging

Logging LOG a Summary Print an assert log message and stop application execution. Inputs format a string with format specifiers ... variable values to insert...

API / SDK 6.1 / C++ / API Reference

Logging

LOG_a

Summary

Print an assert log message and stop application execution.

Inputs

  • format - a string with format specifiers
  • ... - variable values to insert in the resulting string

Synopsis

Logging
CPP
1void LOG_a(const char *format, ...);
2
Wrapped for easier reading. Turn wrap off to inspect exact line lengths.

LOG_e

Summary

Print an error log message.

Inputs

  • format - a string with format specifiers
  • ... - variable values to insert in the resulting string

Synopsis

Logging
CPP
1void LOG_e(const char *format, ...);
2
Wrapped for easier reading. Turn wrap off to inspect exact line lengths.

LOG_w

Summary

Print a warning log message.

Inputs

  • format - a string with format specifiers
  • ... - variable values to insert in the resulting string

Synopsis

Logging
CPP
1void LOG_w(const char *format, ...);
2
Wrapped for easier reading. Turn wrap off to inspect exact line lengths.

LOG_i

Summary

Print an information log message.

Inputs

  • format - a string with format specifiers
  • ... - variable values to insert in the resulting string

Synopsis

Logging
CPP
1void LOG_i(const char *format, ...);
2
Wrapped for easier reading. Turn wrap off to inspect exact line lengths.

LOG_d

Summary

Print a debug log message.

Inputs

  • format - a string with format specifiers
  • ... - variable values to insert in the resulting string

Synopsis

Logging
CPP
1void LOG_d(const char *format, ...);
2
Wrapped for easier reading. Turn wrap off to inspect exact line lengths.

LOG_v

Summary

Print a verbose log message.

Inputs

  • format - a string with format specifiers
  • ... - variable values to insert in the resulting string

Synopsis

Logging
CPP
1void LOG_v(const char *format, ...);
2
Wrapped for easier reading. Turn wrap off to inspect exact line lengths.

Jump Grid

On This Page

LOG aLOG eLOG wLOG iLOG dLOG v
Context Rail

Related nodes

Global Defines
API / SDK 6.1 / C++ / API Reference
Data Structures
API / SDK 6.1 / C++ / API Reference
Enumerated Types
API / SDK 6.1 / C++ / API Reference
Application
API / SDK 6.1 / C++ / API Reference
Previous Node
Leaderboard
API / SDK 6.1 / C++ / API Reference
Next Node
Cubios::Math
API / SDK 6.1 / C++ / gfx engine