about summary refs log tree commit diff
path: root/src/pronouns/web.clj
diff options
context:
space:
mode:
Diffstat (limited to 'src/pronouns/web.clj')
-rw-r--r--src/pronouns/web.clj10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/pronouns/web.clj b/src/pronouns/web.clj
index 83a184d..15057c2 100644
--- a/src/pronouns/web.clj
+++ b/src/pronouns/web.clj
@@ -21,7 +21,9 @@
             [clojure.string :as s]
             [clojure.java.io :as io]
             [ring.adapter.jetty :as jetty]
-            ;[ring.middleware.logger :as logger]
+            ;; FIXME morgan.astra <2018-11-14 Wed>
+            ;; make this logger work or use another one
+            ;; [ring.middleware.logger :as logger]
             [ring.middleware.stacktrace :as trace]
             [ring.middleware.params :as params]
             [ring.middleware.resource :refer [wrap-resource]]
@@ -66,9 +68,13 @@
 
 (def app
   (-> app-routes
-      (wrap-resource "images")
+      ;; FIXME morgan.astra <2018-11-14 Wed>
+      ;; use this resource or delete it
+      ;; (wrap-resource "images")
       wrap-content-type
       wrap-not-modified
+      ;; FIXME morgan.astra <2018-11-14 Wed>
+      ;; make this logger work or use another one
       ;logger/wrap-with-logger
       wrap-error-page
       wrap-gnu-natalie-nguyen