Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@hkjels
Last active March 14, 2017 17:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hkjels/90c689754bf8f5520f9507d6f0a7e2d7 to your computer and use it in GitHub Desktop.
Save hkjels/90c689754bf8f5520f9507d6f0a7e2d7 to your computer and use it in GitHub Desktop.
Log all inputs to console or REPL, the input is returned for further manipulation
(defn log
"Log all inputs to console or REPL, the input is returned for further manipulation"
[& in]
(do
(apply #?(:clj println :cljs js/console.log) in)
in))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment