diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-01-04 11:04:11 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-04 11:04:11 +0000 |
commit | a8ad8666cd2b5df525afe702a953095877bcecde (patch) | |
tree | 0248a3fe722e521f5d9ab601bacbdd6c0d3c680a /modules/shared.py | |
parent | a2ff57cfb04c8a22b737265ddd886f390ecbfc4f (diff) | |
parent | cec209981ee988536c2521297baf9bc1b256005f (diff) | |
download | stable-diffusion-webui-gfx803-a8ad8666cd2b5df525afe702a953095877bcecde.tar.gz stable-diffusion-webui-gfx803-a8ad8666cd2b5df525afe702a953095877bcecde.tar.bz2 stable-diffusion-webui-gfx803-a8ad8666cd2b5df525afe702a953095877bcecde.zip |
Merge pull request #6261 from vladmandic/api-logging
add api logging
Diffstat (limited to 'modules/shared.py')
-rw-r--r-- | modules/shared.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/shared.py b/modules/shared.py index c1b20081..6a217865 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -82,6 +82,7 @@ parser.add_argument('--vae-path', type=str, help='Path to Variational Autoencode parser.add_argument("--disable-safe-unpickle", action='store_true', help="disable checking pytorch models for malicious code", default=False)
parser.add_argument("--api", action='store_true', help="use api=True to launch the API together with the webui (use --nowebui instead for only the API)")
parser.add_argument("--api-auth", type=str, help='Set authentication for API like "username:password"; or comma-delimit multiple like "u1:p1,u2:p2,u3:p3"', default=None)
+parser.add_argument("--api-log", action='store_true', help="use api-log=True to enable logging of all API requests")
parser.add_argument("--nowebui", action='store_true', help="use api=True to launch the API instead of the webui")
parser.add_argument("--ui-debug-mode", action='store_true', help="Don't load model to quickly launch UI")
parser.add_argument("--device-id", type=str, help="Select the default CUDA device to use (export CUDA_VISIBLE_DEVICES=0,1,etc might be needed before)", default=None)
|