commandline: sort log levels

The sorting of this constant doesn't matter to the code, but it does
get used in the --help output.  So let's sort the var so it indicates
the relative levels to users.  Otherwise they need to look up the
logging documentation to figure out which is higher priority.

BUG=None
TEST=`upload_symbols --help` shows log levels sorted correctly

Change-Id: Idcb34472462b3726c1cdbf95198c151de662b1c6
Reviewed-on: https://gerrit.chromium.org/gerrit/65532
Reviewed-by: Marc MERLIN <merlin@chromium.org>
Tested-by: Mike Frysinger <vapier@chromium.org>
Commit-Queue: Mike Frysinger <vapier@chromium.org>
diff --git a/lib/commandline.py b/lib/commandline.py
index 47665ab..80c11b7 100644
--- a/lib/commandline.py
+++ b/lib/commandline.py
@@ -129,8 +129,9 @@
 
 class BaseParser(object):
   """Base parser class that includes the logic to add logging controls."""
-  DEFAULT_LOG_LEVELS = ("critical", "debug", "error", "fatal", "info",
-                        "warning")
+  DEFAULT_LOG_LEVELS = ('fatal', 'critical', 'error', 'warning', 'info',
+                        'debug')
+
   DEFAULT_LOG_LEVEL = "info"
   ALLOW_LOGGING = True
   SUPPORTS_CACHING = False