How to build gradle project with --debug flag in Android Studio?

How can i set option to run gradle build with --debug flag in Android Studio to get verbose output ? I dont think this is similar to running “gradle build” command which builds the debug buildType. Also how can i set any flag for gradle build in Android Studio?

I am using gradle plug-in 0.14.2 with Android Studio 0.9.2.

I think i got the answer. you just have to run command from root of your project : gradle --debug assembleDebug Thanks