Writes a warning log message and plays a beep sound. A collection of items that make up the log message.
(params LogItem?[] items)
| 23 | /// </summary> |
| 24 | /// <param name="items">A collection of items that make up the log message.</param> |
| 25 | public static void Warning(params LogItem?[] items) |
| 26 | { |
| 27 | Warning(items, false); |
| 28 | } |
| 29 | /// <summary> |
| 30 | /// Writes a warning log message. |
| 31 | /// </summary> |
no outgoing calls
no test coverage detected