logging: Issue 6615: Changed handler prepend to append.
diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py
index b1f92b0..667a3a5 100644
--- a/Lib/logging/__init__.py
+++ b/Lib/logging/__init__.py
@@ -610,7 +610,7 @@
     """
     _acquireLock()
     try:
-        _handlerList.insert(0, weakref.ref(handler, _removeHandlerRef))
+        _handlerList.append(weakref.ref(handler, _removeHandlerRef))
     finally:
         _releaseLock()