You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4net-user@logging.apache.org by Graham Walsh <gr...@calyon.com> on 2009/01/05 17:38:28 UTC

Rich text box appender...

hi,
 
I have a rich text box appender in place and everything is working
correctly. However at runtime, the rich text box output (which is my
log4net output), has all its text selected and the colour is wrong.
Anybody know how I configure RichTextBox appender such that the contents
of my rtb is not highlighted.. and even if it must be highlighted,
anybody know how I can change this colour. 
 
 
for info, this is what my appender looks like...
 
<appender name="MainFormRichTextAppender"
type="log4net.Appender.RichTextBoxAppender">

<appendToFile value="true" />

<maximumFileSize value="250000KB" />

<maxSizeRollBackups value="2" />

<!--<lockingModel type="log4net.Appender.FileAppender+MinimalLock" />

<lockingModel type="log4net.Appender.RichTextBoxAppender+MinimalLock"
/>-->

<layout type="log4net.Layout.PatternLayout">

<conversionPattern value="%date %-5level %-70logger - %message%newline"
/>

</layout>

<!--<code lang="XML" escaped="true">-->

<mapping>

<level value="DEBUG" />

<textColorName value="DarkGray" />

<bold value="true" />

<fontFamilyName value="Microsoft Sans Serif"/>

<pointSize value="7.75" />

</mapping>

<mapping>

<level value="INFO" />

<textColorName value="Black" />

<bold value="true" />

<fontFamilyName value="Microsoft Sans Serif"/>

<pointSize value="7.75" />

</mapping>

<mapping>

<level value="WARN" />

<textColorName value="LightBlue" />

<bold value="true" />

<fontFamilyName value="Microsoft Sans Serif"/>

<pointSize value="7.75" />

</mapping>

<mapping>

<level value="ERROR" />

<textColorName value="Red" />

<bold value="true" />

<fontFamilyName value="Microsoft Sans Serif"/>

<pointSize value="7.75" />

</mapping>

<mapping>

<level value="FATAL" />

<textColorName value="Black" />

<fontFamilyName value="Microsoft Sans Serif"/>

<pointSize value="7.75" />

</mapping>

<!--</code>-->

</appender>

thanks
 
Graham