Unofficial community resource. Not affiliated with, maintained by, or endorsed by WOWCube / Cubios Inc. Cubios Inc. does not guarantee the accuracy or completeness of this content. Official WOWCube Development Kit

WOWCube Docs logo
WOWCube Docs
Mission Control
Section Shortcuts
APIExamplesSourceWOWConnectChangelogDeveloper Toolkit
Filters
SDK and language defaults persist in cookies.
SDK version
Navigation Tree
Collapsed by default, focused on the active path.

Unofficial community resource. Not affiliated with, maintained by, or endorsed by WOWCube / Cubios Inc. Cubios Inc. does not guarantee the accuracy or completeness of this content. For official documentation and the SDK, see the WOWCube Development Kit.

Made byMcKay Seamons
GitHub
  1. Home
  2. Docs
  3. API
  4. Logging
Mission NodeSDK 6.3C++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.3 / C++ / API Reference
VersionSDK 6.3SDK 6.2SDK 6.1
Report issue

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.

Trust & provenance

Document status

Source
Logging · installed SDK headers
Classification
API reference
Verification
Community-maintained · verify against installed SDK

Catalog updated Oct 20, 2018

Structured index

Symbols on this page

Names and signatures are extracted from this SDK-derived page. Signature hashes detect accidental changes.

LoggingMember
LOG_aMember
LOG_eMember
LOG_wMember
LOG_iMember
LOG_dMember
LOG_vMember

Used in SDK snippets

LOG_i→WorkingWithEmulator.cppLOG_i→main.pwnLOG_i→WorkingWithEmulator.cppLOG_i→main.pwnLOG_i→WorkingWithEmulator.cpp
Jump Grid

On This Page

LOG aLOG eLOG wLOG iLOG dLOG v
Back to top ↑
Context Rail

Related nodes

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