Logs the specified warning message to the log file. The message.
(string msg)
| 865 | /// </summary> |
| 866 | /// <param name="msg">The message.</param> |
| 867 | [HideInEditor] |
| 868 | public static void LogWarning(string msg) |
| 869 | { |
| 870 | Debug.Logger.LogHandler.LogWrite(LogType.Warning, msg); |
| 871 | } |
| 872 | |
| 873 | /// <summary> |
| 874 | /// Logs the specified warning exception to the log file. |
no test coverage detected