name: filter-logger version: 0.5.0.0 synopsis: Filterable request logging wai middleware. Change how data is logged and when. description: Composable filters to transform objects and control when they are written to server logs. homepage: https://github.com/caneroj1/filter-logger#readme license: MIT license-file: LICENSE author: Joe Canero maintainer: jmc41493@gmail.com copyright: Copyright: (c) 2017 Joe Canero category: Web build-type: Simple extra-source-files: README.md cabal-version: >=1.10 library hs-source-dirs: src exposed-modules: Network.Wai.Middleware.FilterLogger , Network.Wai.Middleware.FilterLogger.Internal build-depends: base >= 4.6 && < 5 , aeson , aeson-pretty , bytestring , data-default , fast-logger , http-types , semigroups , time , wai , wai-extra , wai-logger default-language: Haskell2010 executable filter-logger-basic-exe hs-source-dirs: examples/basic main-is: Main.hs ghc-options: -threaded -rtsopts -with-rtsopts=-N build-depends: base , filter-logger , bytestring , scotty default-language: Haskell2010 executable filter-logger-password-exe hs-source-dirs: examples/password main-is: Main.hs ghc-options: -threaded -rtsopts -with-rtsopts=-N build-depends: base , filter-logger , aeson , bytestring , scotty default-language: Haskell2010 test-suite filter-logger-test type: exitcode-stdio-1.0 hs-source-dirs: test main-is: Spec.hs build-depends: base , filter-logger , bytestring , HUnit ghc-options: -threaded -rtsopts -with-rtsopts=-N default-language: Haskell2010 source-repository head type: git location: https://github.com/caneroj1/filter-logger