# Sublime Text 2 Logging snippets *Type `log` and hit tab.* - Coffee:`console.log "thing:", thing` - Rails controller:``` p "="*50 p "thing:", thing p "="*50 ``` - Ruby:`p "thing:", thing` - ERB:`<%= "thing: #{thing}" %>` *Javascript:* Type `log thing` to get output of `console.log('thing: ', thing)` Type `logs thing` to get output of `console.log('thing')` Type `info thing` to get output of `console.info('thing: ', thing)` Type `infos thing` to get output of `console.info('thing')`