You can use anything as an action type, but it seems like only strings are logged properly. <img width="237" alt="screen shot 2018-02-21 at 3 31 30 pm" src="https://user-images.githubusercontent.com/1308273/36503790-531f7f6e-171c-11e8-9a39-41058b8501c4.png"> For example if you have `LOAD_USER = Symbol('load user');` and then `dispatch({ type: LOAD_USER })`, it will log the action as `<UNDEFINED>`. The action type should be logged as `String(action.type)`.