I am following the om textbook. I use Light Table to configure an external browser connection. Also, in my clojurescript code, I call (enable-console-print!) To send my println statements to the browser console.
The problem is that when I print the om component, something like:
(println (om/build my-component-function my-data))
The output I get is:
#<[object Object]>
I have the same problem if I just eval (om/build my-component-function my-data) in LightTable.
The ability to check this object will be useful for debugging. How can I print something more meaningful?
om clojurescript
sthomps
source share