Be careful, that only accidentally does what you're looking for. --logging=none tells tornado not to touch your logging configuration. The python logging module defaults to only logging warnings and above, while tornado defaults to info. You could have a similar effect with --logging=warning to get tornado's log formatting but not log any info messages (but note that there may be more than just http requests logged at the info level).
The other way to disable this per-request logging without losing all other info messages along with it is to subclass RequestHandler and override _log(). For static files, this means also using a custom subclass of StaticFileHandler and binding it to /static/ manually instead of using the one tornado can create for you automatically.
I don't think setting debug mode has any effect on the logging configuration (maybe you're thinking of --logging=debug?), but I might be forgetting something.
-Ben