Whilst the Ent Lib 5 is very easy to get logging working; when the data is logged to the event log it is in the format (as seen via XML tab> as <EventData> A B C D </>" . I need to get it in the form <EventData><Data Name=A/><Data Name=B/>....". Does anyone know if there a way of doing this using the Ent Lib 5 logging block or the like...
Enterprise Library 5 How to change event log format?
385 Views Asked by thisisthekgb At
1
There are 1 best solutions below
Related Questions in ENTERPRISE-LIBRARY
- Enterprise Library 6 - dynamically change log file name
- How to merge .net custom config sections for different environments
- The type or namespace name 'Practices' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?)
- VSIXInstaller.NoApplicableSKUsException: This extension is not installable on any currently installed products
- Do we need to close DbCommand in enterprise library 4.1?
- Could not load file or assembly 'Microsoft.Practices.EnterpriseLibrary.Common, Version=6.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or
- EnterpriseLibrary dbCommand.ExecuteScalarAsync is error :Invalid operation. The connection is closed
- Change Enterprise Library configuration midway in a program
- Enterprise Library TraceListener to display logging messages inside app
- Azure Web Role with Transient Fault Handling Block exception: The path is too long after being fully qualified
- Enterprise Library DAAB 6 and ODP.NET - Connection string for the default database 'XXX' does not exist
- Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. Enterprise Library
- Enterprise Library issue
- Enterprise library logging Database trace listener with custom parameter input
- Change name of source in Enterprise Library Logging
Related Questions in EVENT-LOG
- Windows Service "Service could not be started" from EventLog call
- Failed to read logs from event logs with C# in Azure Windows Server 2012
- How often should I write to the Event Log in Windows?
- Read Event log file from path
- EvtSubscribe doesn't work with query on EventRecordID
- Export Event Log (.evtx) without "run as administrator"
- Why does NLog always write to Application event log instead of my own Custom log?
- How to Fetch the new event log from the previous event id
- How to compile manifest file with MC.exe?
- How can I find the index value of the last item in the Application EventLog? (As it doesn't seem to be Entries.Count - 1)
- eventlog source - string/message table lookup failed
- How can one query the Cluster .etl logs thru Powershell?
- Data type of a Keyword attribute in an XML event log
- The source was not found, but some or all event logs could not be searched. Inaccessible logs: Security
- Create event log entry with powershell and fill in user
Related Questions in ENTERPRISE-LIBRARY-5
- Is it possible to use dataBase.executeNonQuery and use a return value from a stored proc?
- Change Enterprise Library configuration midway in a program
- Enterprise Library 6.0 - exceptional handling block-The configuration section for Exception Handling cannot be found in the configuration source
- Security EnterpriseLibrary Logging Block using IIS
- Microsoft Enterprise Library Logging Application Block Formatting Incorrectly
- Can IsLoggingEnabled() change at runtime?
- When to use ExternallyControlledLifetimeManager?
- Enterprise Lib 5.0 not working on Production (Windows Server 2008R2)
- The type Database cannot be constructed. You must configure the container to supply this value (EntLib 5 + ODP.NET)
- Why Enterprise Library does not throw FaultException in WCF
- Enterprise Library cast exception in web application
- Comma Separated String from a DataReader Column
- Enterprise Logging not translating environment variables in XML Trace Listener fileName specification
- How to manage logs' preservation period using RollingFlatFileTraceListener on Enterprise Library Logging Application Block?
- Enterprise Library Logging Extended Properties Fails on Server
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You can customize your text formatter for writing it as xml. Something like this:
So the output is something like:
If you want to serialize an object to xml you can write a custom formatter and use it. Derive it from LogFormatter and override the Format method. And serialize your LogEntry to xml.