facebook twitter hatena line email

「Unity/Csharp/Log」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==ログの記述方法== <pre> using UnityEngine; Debug.Log("ログです"); Debug.LogError("エラーログです"); </pre> ログは、Consoleに表示される。 Co...」)
 
(ログの記述方法)
行4: 行4:
 
Debug.Log("ログです");
 
Debug.Log("ログです");
 
Debug.LogError("エラーログです");
 
Debug.LogError("エラーログです");
 +
Debug.Log("hoge=" + hoge);
 +
Debug.Log($"hoge={hoge}");
 
</pre>
 
</pre>
 
ログは、Consoleに表示される。
 
ログは、Consoleに表示される。
  
 
Consoleは、Unityメインメニュー/Window/General/Consoleで、開く。
 
Consoleは、Unityメインメニュー/Window/General/Consoleで、開く。

2022年11月16日 (水) 03:28時点における版

ログの記述方法

using UnityEngine;
Debug.Log("ログです");
Debug.LogError("エラーログです");
Debug.Log("hoge=" + hoge);
Debug.Log($"hoge={hoge}");

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

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