Skip to content

Commit

Permalink
Merge pull request #102 from macielti/refactor-log
Browse files Browse the repository at this point in the history
Fix Log
  • Loading branch information
macielti committed Nov 20, 2023
2 parents 08a6d6d + 3155228 commit 52a2c56
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ of [keepachangelog.com](http://keepachangelog.com/).

## [Unreleased]

## [23.45.47] - 2023-11-20

## Fixed

- Fixed logs not showing up on terminal

## [23.45.46] - 2023-11-18

## Added
Expand Down Expand Up @@ -610,7 +616,9 @@ of [keepachangelog.com](http://keepachangelog.com/).

- Add `loose-schema` function.

[Unreleased]: https://github.com/macielti/common-clj/compare/v23.45.46...HEAD
[Unreleased]: https://github.com/macielti/common-clj/compare/v23.45.47...HEAD

[23.45.47]: https://github.com/macielti/common-clj/compare/v23.45.46...v23.45.47

[23.45.46]: https://github.com/macielti/common-clj/compare/v23.44.46...v23.45.46

Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject net.clojars.macielti/common-clj "23.45.46"
(defproject net.clojars.macielti/common-clj "23.45.47"
:description "Just common Clojure code that I use across projects"
:url "https://github.com/macielti/common-clj"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
Expand Down
6 changes: 3 additions & 3 deletions src/common_clj/io/interceptors.clj
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
(ns common-clj.io.interceptors
(:require [clojure.tools.logging :as log]
[common-clj.error.core :as common-error]
(:require [common-clj.error.core :as common-error]
[humanize.schema :as h]
[io.pedestal.http :as http]
[io.pedestal.http.body-params :as body-params]
[io.pedestal.interceptor :as pedestal.interceptor]
[io.pedestal.interceptor.error :as error]
[schema.core :as s])
[schema.core :as s]
[taoensso.timbre :as log])
(:import (clojure.lang ExceptionInfo)))

(def error-handler-interceptor
Expand Down

0 comments on commit 52a2c56

Please sign in to comment.