Skip to content

Commit

Permalink
cleaning
Browse files Browse the repository at this point in the history
  • Loading branch information
kwladyka committed Aug 2, 2021
1 parent 0b347ee commit 9ca0986
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Code which help me keep consistency in my projects. Feel free to use it.
## Specification

- [logs/ring_wrappers](src/consistency/logs/ring_wrappers.clj) - wrapper for [ring](https://github.com/ring-clojure/ring)
- [logs/google_json_payload](src/consistency/logs/json_payload) - JSON structured logs output in google format. Especially useful for services like [cloud run](https://cloud.google.com/run), because google read JSON format from `stdout` and `stderr`. In that way you don't need any extra libraries for logging.
- [logs/google/json_payload.clj](src/consistency/logs/google/json_payload.clj) - JSON structured logs output in google format. Especially useful for services like [cloud run](https://cloud.google.com/run), because google read JSON format from `stdout` and `stderr`. In that way you don't need any extra libraries for logging.
- google doc [JSON payload](https://cloud.google.com/logging/docs/agent/logging/configuration#process-payload)
- It works in [cloud run](https://cloud.google.com/run) with google [Error Reporting](https://cloud.google.com/error-reporting/docs/) without any additional settings.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(ns consistency.logs.google.integrant
(ns consistency.logs.google.json-payload-integrant
(:require [integrant.core :as ig]
[clojure.spec.alpha :as s]
[consistency.logs.google.json-payload :as google-json-payload])
Expand Down
2 changes: 1 addition & 1 deletion test/consistency/logs/google/integrant_test.clj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(ns consistency.logs.google.integrant-test
(:require [clojure.test :refer :all]
[integrant.core :as ig]
[consistency.logs.google.integrant :as google-integrant]
[consistency.logs.google.json-payload-integrant :as google-integrant]
[clojure.tools.logging :as l])
(:import (java.util.logging Level LogManager)))

Expand Down

0 comments on commit 9ca0986

Please sign in to comment.