Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
After I upgraded to 7.4.1 my log files are growing rapidly.
Right now I have 903157 lines of this, just repeating.
2016-02-24 05:42:19,544 [P6472/D4/T14] INFO umbraco.macro - Extension added: urn:Examine, XsltExtensions 2016-02-24 05:42:19,544 [P6472/D4/T14] INFO umbraco.macro - Complete (took 0ms) 2016-02-24 05:42:19,544 [P6472/D4/T14] INFO umbraco.macro - Extension added: urn:Flexit.PdfThumbnails, Extension 2016-02-24 05:42:19,544 [P6472/D4/T14] INFO umbraco.macro - Complete (took 0ms) 2016-02-24 05:42:19,544 [P6472/D4/T14] INFO umbraco.macro - Extension added: urn:Exslt.ExsltCommon, ExsltCommon 2016-02-24 05:42:19,544 [P6472/D4/T14] INFO umbraco.macro - Complete (took 0ms) 2016-02-24 05:42:19,544 [P6472/D4/T14] INFO umbraco.macro - Extension added: urn:Exslt.ExsltDatesAndTimes, ExsltDatesAndTimes 2016-02-24 05:42:19,544 [P6472/D4/T14] INFO umbraco.macro - Complete (took 0ms) 2016-02-24 05:42:19,544 [P6472/D4/T14] INFO umbraco.macro - Extension added: urn:Exslt.ExsltMath, ExsltMath 2016-02-24 05:42:19,544 [P6472/D4/T14] INFO umbraco.macro - Complete (took 0ms) 2016-02-24 05:42:19,544 [P6472/D4/T14] INFO umbraco.macro - Extension added: urn:Exslt.ExsltRegularExpressions, ExsltRegularExpressions 2016-02-24 05:42:19,544 [P6472/D4/T14] INFO umbraco.macro - Complete (took 0ms) 2016-02-24 05:42:19,544 [P6472/D4/T14] INFO umbraco.macro - Extension added: urn:Exslt.ExsltSets, ExsltSets 2016-02-24 05:42:19,544 [P6472/D4/T14] INFO umbraco.macro - Complete (took 0ms) 2016-02-24 05:42:19,544 [P6472/D4/T14] INFO umbraco.macro - Extension added: urn:Exslt.ExsltStrings, ExsltStrings 2016-02-24 05:42:19,544 [P6472/D4/T14] INFO umbraco.macro - Complete (took 0ms)
How can I avoid this ?
Just convert everything to razor. Errors will disappear then.
Just kidding. It seems that when a xslt macro is executed the loading of the xslt extensions is logged. In my opinion this should be logged as a debug line.
It seems related to this code line : https://github.com/umbraco/Umbraco-CMS/blob/20f5560767b3f72e94850d930124def00e6f726d/src/Umbraco.Web/umbraco.presentation/macro.cs#L1156
Maybe raise a issue for it on the tracker ?
Dave
@Dave: I instantly subscribed to this thread just to see who would be the first to throw the Razor card :-)
Pluspoints awarded for looking into to source, though :-)
/Chriztian
I changed the following in log4net.config
From:
<root> <priority value="Info"/> <appender-ref ref="AsynchronousLog4NetAppender" /></root>
To:
<root> <priority value="Error"/> <appender-ref ref="AsynchronousLog4NetAppender" /></root>
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Logfiles grows rapidly after upgrade
After I upgraded to 7.4.1 my log files are growing rapidly.
Right now I have 903157 lines of this, just repeating.
2016-02-24 05:42:19,544 [P6472/D4/T14] INFO umbraco.macro - Extension added: urn:Examine, XsltExtensions 2016-02-24 05:42:19,544 [P6472/D4/T14] INFO umbraco.macro - Complete (took 0ms) 2016-02-24 05:42:19,544 [P6472/D4/T14] INFO umbraco.macro - Extension added: urn:Flexit.PdfThumbnails, Extension 2016-02-24 05:42:19,544 [P6472/D4/T14] INFO umbraco.macro - Complete (took 0ms) 2016-02-24 05:42:19,544 [P6472/D4/T14] INFO umbraco.macro - Extension added: urn:Exslt.ExsltCommon, ExsltCommon 2016-02-24 05:42:19,544 [P6472/D4/T14] INFO umbraco.macro - Complete (took 0ms) 2016-02-24 05:42:19,544 [P6472/D4/T14] INFO umbraco.macro - Extension added: urn:Exslt.ExsltDatesAndTimes, ExsltDatesAndTimes 2016-02-24 05:42:19,544 [P6472/D4/T14] INFO umbraco.macro - Complete (took 0ms) 2016-02-24 05:42:19,544 [P6472/D4/T14] INFO umbraco.macro - Extension added: urn:Exslt.ExsltMath, ExsltMath 2016-02-24 05:42:19,544 [P6472/D4/T14] INFO umbraco.macro - Complete (took 0ms) 2016-02-24 05:42:19,544 [P6472/D4/T14] INFO umbraco.macro - Extension added: urn:Exslt.ExsltRegularExpressions, ExsltRegularExpressions 2016-02-24 05:42:19,544 [P6472/D4/T14] INFO umbraco.macro - Complete (took 0ms) 2016-02-24 05:42:19,544 [P6472/D4/T14] INFO umbraco.macro - Extension added: urn:Exslt.ExsltSets, ExsltSets 2016-02-24 05:42:19,544 [P6472/D4/T14] INFO umbraco.macro - Complete (took 0ms) 2016-02-24 05:42:19,544 [P6472/D4/T14] INFO umbraco.macro - Extension added: urn:Exslt.ExsltStrings, ExsltStrings 2016-02-24 05:42:19,544 [P6472/D4/T14] INFO umbraco.macro - Complete (took 0ms)
How can I avoid this ?
Just convert everything to razor. Errors will disappear then.
Just kidding. It seems that when a xslt macro is executed the loading of the xslt extensions is logged. In my opinion this should be logged as a debug line.
It seems related to this code line : https://github.com/umbraco/Umbraco-CMS/blob/20f5560767b3f72e94850d930124def00e6f726d/src/Umbraco.Web/umbraco.presentation/macro.cs#L1156
Maybe raise a issue for it on the tracker ?
Dave
@Dave: I instantly subscribed to this thread just to see who would be the first to throw the Razor card :-)
Pluspoints awarded for looking into to source, though :-)
/Chriztian
I changed the following in log4net.config
From:
To:
is working on a reply...