From e9c23593a78a593b1766471b977c3b781cc3b1b2 Mon Sep 17 00:00:00 2001 From: cskim Date: Tue, 28 Mar 2017 20:46:09 +0900 Subject: [PATCH] Hotfix coding style error Change-Id: I2db11307f62333781829ddfc48e3c948dc2c3023 --- LibTVRefCommonPortable/Utils/DebuggingUtils.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/LibTVRefCommonPortable/Utils/DebuggingUtils.cs b/LibTVRefCommonPortable/Utils/DebuggingUtils.cs index 85c2528..5f991c3 100644 --- a/LibTVRefCommonPortable/Utils/DebuggingUtils.cs +++ b/LibTVRefCommonPortable/Utils/DebuggingUtils.cs @@ -70,6 +70,9 @@ namespace LibTVRefCommonPortable.Utils /// /// A method displays a debugging message /// A list of command line arguments. + /// A file name. + /// A function name. + /// A line number. public static void Dbg(string message, [CallerFilePath] System.String file = "", [CallerMemberName] System.String func = "", [CallerLineNumber] System.Int32 line = 0) { ism.Dbg(message, file, func, line); @@ -78,6 +81,9 @@ namespace LibTVRefCommonPortable.Utils /// /// A method displays a error message /// A list of command line arguments. + /// A file name. + /// A function name. + /// A line number. public static void Err(string message, [CallerFilePath] System.String file = "", [CallerMemberName] System.String func = "", [CallerLineNumber] System.Int32 line = 0) { ism.Err(message, file, func, line); -- 2.7.4