瀏覽代碼

Fixed #23278 -- Documented django.db.backends.schema logger

areski 10 年之前
父節點
當前提交
ef90d395ab
共有 1 個文件被更改,包括 10 次插入1 次删除
  1. 10 1
      docs/topics/logging.txt

+ 10 - 1
docs/topics/logging.txt

@@ -413,7 +413,7 @@ requirements of logging in Web server environment.
 Loggers
 -------
 
-Django provides four built-in loggers.
+Django provides several built-in loggers.
 
 ``django``
 ~~~~~~~~~~
@@ -489,6 +489,15 @@ specific logger following this example::
                 'propagate': False,
             },
 
+``django.db.backends.schema``
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+.. versionadded:: 1.7
+
+Logs the SQL queries that are executed during schema changes to the database by
+the :doc:`migrations framework </topics/migrations>`. Note that it won't log the
+queries executed by :class:`~django.db.migrations.operations.RunPython`.
+
 Handlers
 --------