Logs the specified message to the log file. The message.
(string msg)
| 855 | /// </summary> |
| 856 | /// <param name="msg">The message.</param> |
| 857 | [HideInEditor] |
| 858 | public static void Log(string msg) |
| 859 | { |
| 860 | Debug.Logger.LogHandler.LogWrite(LogType.Info, msg); |
| 861 | } |
| 862 | |
| 863 | /// <summary> |
| 864 | /// Logs the specified warning message to the log file. |
no test coverage detected