Trigger API Reference DCEI Functions Log0 - BLKTower/TestWiki GitHub Wiki

Table of Contents

Trigger API Reference\DCEI Functions\Log {Trigger-API-ReferenceDCEI-FunctionsLog}

void LogMessage(string message) {void-LogMessagestring-message}

void LogMessage(string message)

Description

Prints the given message to the Play Settings Log. Useful for debugging.

Parameters

  • message The string to output.

Example Usage

DCEI.LogMessage("Hello" .. "World")

Related

void LogWarning(string message) {void-LogWarningstring-message}

void LogWarning(string message)

Description

Similar to LogMessage(), but the output text color is orange.

Parameters

  • message The string to output.

Example Usage

DCEI.LogWarning("Hello" .. "World")

Related

void LogError(string message) {void-LogErrorstring-message}

void LogError(string message)

Description

Similar to LogMessage(), but the output text color is red.

Parameters

  • message The string to output.

Example Usage

DCEI.LogError("Hello" .. "World")

Related

⚠️ **GitHub.com Fallback** ⚠️