Repository: logging-log4net Updated Branches: refs/heads/develop c85df1846 -> 2ca343b6f
Fixed yet another trailing + that went missing with commit 8a5b4204bf4c053316c88a265a9afee04a250e36 Project: http://git-wip-us.apache.org/repos/asf/logging-log4net/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4net/commit/2ca343b6 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4net/tree/2ca343b6 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4net/diff/2ca343b6 Branch: refs/heads/develop Commit: 2ca343b6f136a2694211a70ba0830032349bcfc5 Parents: c85df18 Author: Dominik Psenner <[email protected]> Authored: Thu Jul 27 21:47:02 2017 +0200 Committer: Dominik Psenner <[email protected]> Committed: Thu Jul 27 21:47:02 2017 +0200 ---------------------------------------------------------------------- src/Core/LocationInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/2ca343b6/src/Core/LocationInfo.cs ---------------------------------------------------------------------- diff --git a/src/Core/LocationInfo.cs b/src/Core/LocationInfo.cs index 9cc0868..acdff8f 100644 --- a/src/Core/LocationInfo.cs +++ b/src/Core/LocationInfo.cs @@ -178,7 +178,7 @@ namespace log4net.Core m_fileName = fileName; m_lineNumber = lineNumber; m_methodName = methodName; - m_fullInfo = m_className + '.' + m_methodName + '(' + m_fileName + m_fullInfo = m_className + '.' + m_methodName + '(' + m_fileName + ':' + m_lineNumber + ')'; }
