스프로킷은 기본적으로 Ruby on Rails 3.1 (RC1)의 (dev) 로그에서 매우 장황한 경향이 있습니다.
Started GET "/assets/application.css" for 127.0.0.1 at 2011-06-10 17:30:45 -0400
Compiled app/assets/stylesheets/application.css.scss (5ms) (pid 6303)
Started GET "/assets/application.js" for 127.0.0.1 at 2011-06-10 17:30:45 -0400
Compiled app/assets/stylesheets/default.css.scss (15ms) (pid 6303)
...
Started GET "/assets/default/header_bg.gif" for 127.0.0.1 at 2011-06-10 17:30:45 -0400
Served asset /default/header_logo.gif - 304 Not Modified (7ms) (pid 6303)
Served asset /default/header_bg.gif - 304 Not Modified (0ms) (pid 6246)
Served asset /default/footer_bg.gif - 304 Not Modified (49ms) (pid 6236)
...
자세한 표시 수준을 줄이거 나 모두 비활성화하고 싶습니다.
ActiveRecord SQL 문을 침묵시키는 것과 비슷 environment.rb
하거나 development.rb
비슷한 구성 줄을 추가하여 로깅의 세부 정보를 비활성화하거나 줄이는 확실한 방법이 있다고 가정 config.active_record.logger = nil
합니다.
config.assets.debug = false
development.rb를 넣을 수 있습니다 .
config.assets.debug = false
대부분의 사람들이 개발하고 싶지 않은 자산을 단일 파일로 연결합니다