From: cskim Date: Tue, 28 Mar 2017 11:46:09 +0000 (+0900) Subject: Hotfix coding style error X-Git-Tag: submit/tizen/20170808.015446~145 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e9c23593a78a593b1766471b977c3b781cc3b1b2;p=profile%2Ftv%2Fapps%2Fdotnet%2Fhome.git Hotfix coding style error Change-Id: I2db11307f62333781829ddfc48e3c948dc2c3023 --- 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);