[ 
https://issues.apache.org/jira/browse/LOG4NET-586?focusedWorklogId=669432&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-669432
 ]

ASF GitHub Bot logged work on LOG4NET-586:
------------------------------------------

                Author: ASF GitHub Bot
            Created on: 25/Oct/21 09:57
            Start Date: 25/Oct/21 09:57
    Worklog Time Spent: 10m 
      Work Description: fluffynuts commented on pull request #22:
URL: https://github.com/apache/logging-log4net/pull/22#issuecomment-950743166


   Good day
   
   It's been quite a while since this PR last saw activity. In an attempt to 
get pull requests under some semblance of 
   order, I'm having to make the uncomfortable decision to jettison pull 
requests which have been dormant for quite some
   time. Perhaps arbitrarily, I'm choosing all pull requests which have not 
seen activity this year (2021), most of
   which are marked as not building or have conflicts with the main branch.
   
   This is _not_ because the contributions aren't valuable - it's simply a 
matter of being the only person spending
   some time on this and being a little overwhelmed. I'd rather get some 
traction on newer issues than continue
   to try to understand, upgrade and work through PRs which don't build or 
which conflict with the main branch,
   or which simply may have been solved in the mean time.
   
   I encourage you to re-submit the PR against the current main branch if the 
issue is still significant. Your
   contributions are appreciated. I apologise for any inconvenience caused and 
sincerely hope that you understand
   the constraints involved which have brought me to the place of making this 
decision.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Issue Time Tracking
-------------------

    Worklog Id:     (was: 669432)
    Time Spent: 20m  (was: 10m)

> XmlLayoutSchemaLog4j throws exception under .Net Core
> -----------------------------------------------------
>
>                 Key: LOG4NET-586
>                 URL: https://issues.apache.org/jira/browse/LOG4NET-586
>             Project: Log4net
>          Issue Type: Bug
>          Components: Other
>    Affects Versions: 2.0.8
>         Environment: .Net Core 1.1 on Windows
>            Reporter: Pierre-Yann Bridé
>            Priority: Major
>             Fix For: 2.1.0
>
>          Time Spent: 20m
>  Remaining Estimate: 0h
>
> Hi,
> When using XmlLayoutSchemaLog4j layout with .Net Core, the following 
> exception appears:
> {code:java}
> {quote}System.ArgumentException: Invalid name character in 'log4j:event'. The 
> ':' character, hexadecimal value 0x0x3A, cannot be included in a name.{quote}
> {code}
> I made a copy of XmlLayoutSchemaLog4j.cs in my sources, and found the culprit:
> {code:java}
> writer.WriteStartElement("log4j:event");
> {code}
> XmlWriter.WriteStartElement is called wrongly, the namespace should be a 
> separate argument:
> {code:java}
> writer.WriteStartElement("event", "log4j");
> {code}
> I corrected all WriteStartElement in my copy, and it now works fine. I hope 
> that you can put this small change in the next version.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to