+ add support for displaying PE Struct data into property grid (read-only)
+ make SetLogText thread safe
+ fix auto scroll, so that it will only scroll when the log is updated and not on a timer + tidy up old (obsolete) code
+ add logic to set autoscroll checkbox on/off based on AutoScroll value
+ add a checkbox to turn on/off autoscroll
use: txtLog.text += value; rather than: txtLog.AppendText(value); which cause the log window to scroll past the end. NOW, it stays at the top
use Synchronized TextWriter
+ massive speed boost in logging
+ bring back BackgroundWorker for LogWriter from r105 (this helps to not block the main form for long log entries)
+ when args is a zero-length array (we don't need and format specifiers, change { and } to {{ }} respectively
+ overhaul logger and logging flags (to better handle turning flags off)
+ fix stackoverflow exceptions in config and logger
+ add exception logic to ensure provider is open
ignore CS0436: importing conflicting types (AssemblyConfig)
+ add warn log support
fix LogWriter to ensure that all logged data gets flushed to it's underlying medium
+ implement bitwise_or and bitwise_and for multiple bitflag values
autoscroll_timer_Tick(): don't throw errors regarding caret position
+ correct getting name and value from loggingflags + don't autosize loggingflags config control
add support for implictly converting binary bit flags to enum-like values
fix lineendings and autoscroll
+ add logging options: * VERBOSE_DEBUG and VERBOSE_ERROR : for debug and error messages that are very 'chatty'
get logging flags directly from logger class
logger add a forced log class (which ignores logging flags)
fix issues with logging control not being found
modify user settings dialog
+ add support to save logging flags at user level
fix LOG_PATH so it does not prevent the main form designer from being opened and closing VS2010
+ add versioning support
+ add settings upgrade subscriber support (needs to be called in a static constructor for types that are always used)
target x86
info, debug, and error log messages
logging support should be done now logging includes: * log to main application * log to file
+ don't delete log file in contructor moved to method CreateNewLog()
+ add support to log startup message
fix newline logging support when writing to file
+ add support to write log to file (when a message is logged)
implement basic logging support