Below you will find pages that utilize the taxonomy term “Logging”
Post
Did you know that OlivaNova is able to create application information logs automatically?
OLIVANOVA can generate code for application information logs automatically:
- for .NET environments OLIVANOVA uses the System.Diagnostics.Trace class included in the .NET Framework
- for J2EE platforms OLIVANOVA uses log4j
Post
JavaScript Logging
Today I learned an interesting feature of JavaScript along with Firebug. Instead of using “alert” to display some trace information, you can use “console.log (“my message”);”. Together with the free web development tool Firebug, this information can then be shown in Firebug’s console window. This is extremely helpful when trying to debug some AJAX code.
Please visit this website to get more information.
Saved my day ;-)