(defn
log
([x] (log :info x))
([level arg]
(let
[f
(condp
=
(if (html-or-react-native-env?) level :info)
:warn
(fn* [p1__18504#] (.warn js/console p1__18504#))
:debug
(fn* [p1__18505#] (.debug js/console p1__18505#))
:error
(fn* [p1__18506#] (.error js/console p1__18506#))
(fn* [p1__18507#] (.log js/console p1__18507#)))]
(f arg))))