System.Data.SQLite

Check-in [8887a9f786]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fix an incorrect comment.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 8887a9f786fa3aa31ac77fa9a569193b3ac377f5
User & Date: mistachkin 2012-01-04 05:55:55.010
Context
2012-01-04
07:15
Remove unnecessary nesting of 'if' blocks in the command line argument processing. Add comments and fixup some whitespace. check-in: f909e1b7b1 user: mistachkin tags: trunk
05:55
Fix an incorrect comment. check-in: 8887a9f786 user: mistachkin tags: trunk
05:23
Allow image runtime version checks to be bypassed via the command line. When the 'verbose' option is enabled, write all debug messages to the console; otherwise, write all trace messages to the console. Keep track of the debug and trace priorities and formats separately. check-in: 36cdcbeb2e user: mistachkin tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to tools/install/Installer.cs.
2256
2257
2258
2259
2260
2261
2262
2263

2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
                        }

                        ///////////////////////////////////////////////////////

                        if (!configuration.noConsole)
                        {
                            //
                            // NOTE: In verbose mode, ALL output will be

                            //       displayed to the console; otherwise, only
                            //       outputs that are actually logged (i.e.
                            //       those that meet the priority requirements)
                            //       will be displayed to the console.
                            //
                            if (!configuration.verbose)
                            {
                                Trace.Listeners.Add(new ConsoleTraceListener());
                            }
#if DEBUG
                            else







|
>
|
|
<
|







2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266

2267
2268
2269
2270
2271
2272
2273
2274
                        }

                        ///////////////////////////////////////////////////////

                        if (!configuration.noConsole)
                        {
                            //
                            // NOTE: In verbose mode, debug output (that meets
                            //       the configured priority criteria) will be
                            //       displayed to the console; otherwise, trace
                            //       output (that meets the configured priority

                            //       criteria) will be displayed to the console.
                            //
                            if (!configuration.verbose)
                            {
                                Trace.Listeners.Add(new ConsoleTraceListener());
                            }
#if DEBUG
                            else