vishysank / console-log-atom

A console.log generator for atom editor
MIT License
21 stars 2 forks source link

I want to run multiple method calls simultaneously #7

Closed fuzzygreenblurs closed 8 years ago

fuzzygreenblurs commented 8 years ago

If I try to add (by highlighting) multiple methods at the same time , it only logs the latest one (see below):

// i want to log method1 and method2 at the same time
console.log(method1, method2)   // expected
console.log('METHOD2', method2) // actual
vishysank commented 8 years ago

in this scenario it would actually be better to separately log each of these in diffferent console.log statements. Let me know if there is a specific reason you might want to run both in one call ?