From f969b5ea087f2d9bf646492e1a5ca23535dfac5f Mon Sep 17 00:00:00 2001 From: Oliver Evans Date: Tue, 21 Apr 2020 10:12:13 -0400 Subject: [PATCH] Add a note to the documentation regarding logging (Fixes #330) --- docs/index.rst | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/index.rst b/docs/index.rst index 10063d1..c03143f 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -252,4 +252,7 @@ The commands exposed by Flask-Migrate's command-line interface can also be acces - ``stamp(directory='migrations', revision='head', sql=False, tag=None)`` Sets the revision in the database to the one given as an argument, without performing any migrations. -Note: For greater scripting flexibility you can also use the API exposed by Alembic directly. +Notes: + +- These commands will invoke the same functionality that runs from the command-line, including output to the terminal. The logging configuration of the process will be overriden by Alembic according to the contents of the alembic.ini file. +- For greater scripting flexibility you can also use the API exposed by Alembic directly.