diff options
| -rw-r--r-- | genenetwork-development.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/genenetwork-development.scm b/genenetwork-development.scm index 00ef307..03b6b11 100644 --- a/genenetwork-development.scm +++ b/genenetwork-development.scm @@ -575,6 +575,7 @@ server described by CONFIG, a <genenetwork-configuration> object." "--max-requests" "100" "--max-requests-jitter" "30" "--timeout" "1200" + "--log-level" "debug" "gn2.wsgi"))))))) (define (genenetwork3-cd-gexp config) @@ -644,7 +645,8 @@ server described by CONFIG, a <genenetwork-configuration> object." ;; gunicorn's default 30 second timeout is ;; insufficient for Fahamu AI endpoints and ;; results in worker timeout errors. - "--timeout" "1200")))))))) + "--timeout" "1200" + "--log-level" "debug")))))))) (define (gn-auth-cd-gexp config) "Return a G-expression that runs the latest gn-auth development @@ -708,6 +710,7 @@ server described by CONFIG, a <genenetwork-configuration> object." (invoke #$(file-append gunicorn "/bin/gunicorn") "-b" #$(string-append "localhost:" (number->string gn-auth-port)) "--workers" "8" + "--log-level" "debug" "gn_auth.wsgi:app")))))))) (define (gn-guile-gexp gn-guile-port) |
