facebook twitter hatena line email

Unity/Csharp/Log

提供: 初心者エンジニアの簡易メモ
2022年1月26日 (水) 18:04時点におけるAdmin (トーク | 投稿記録)による版 (ページの作成:「==ログの記述方法== <pre> using UnityEngine; Debug.Log("ログです"); Debug.LogError("エラーログです"); </pre> ログは、Consoleに表示される。 Co...」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

ログの記述方法

using UnityEngine;
Debug.Log("ログです");
Debug.LogError("エラーログです");

ログは、Consoleに表示される。

Consoleは、Unityメインメニュー/Window/General/Consoleで、開く。