Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

During assets:precompile the javascript is minified, but console.logs are left in.

is there a way to remove all console.logs on precompile when the code is pushed to production?

share|improve this question
Interesting! I imagine this wouldn't be too difficult to implement with a gsub, but rails never fails to amaze me with useful stuff like this already built in. – bdares Aug 1 '12 at 17:59

3 Answers

up vote 2 down vote accepted

To point you in the right direction, check out the Use as a code pre-processor section of UglifyJS.

I need to research more about how to pass a --define DEVMODE=false flag within the rake assets:precompile, but adjusting your code to wrap console.log in with the DEVMODE boolean as described in the link above should get you the result you're looking for.

Update:

In some file that will load during rake assets:precompile, add the following monkey patch.

class Uglifier
  private
    def mangle_options
      {
        "mangle" => @options[:mangle],
        "toplevel" => @options[:toplevel],
        "defines" => { DEVMODE: ["name", "null"] }, # This line sets DEVMODE
        "except" => @options[:except],
        "no_functions" => @options[:mangle] == :vars
      }
    end
end

As I mentioned in a comment below, Uglifier does not support passing a :defines mangle option. You could optionally change the marked line above to "defines" => @options[:defines] and update your config with this line

config.assets.js_compressor = Uglifier.new(defines: { DEVMODE: ["name", "null"] })

When running the rake task, DEVMODE will now be converted to null in your source. Now, given the following code in your Javascript source:

if (typeof DEVMODE === 'undefined') {
  DEVMODE = true;
}

if (DEVMODE) {
  console.log('some log message');
}

By default (in development mode), DEVMODE will be set to true, causing the console.log() to execute. When rake assets:precompile is run, UglifyJS is going to set DEVMODE to null before compilation/compression begins. When walking over if (null) { it will see that the condition will never evaluate true, and will strip this dead code from the resulting source.

As long as you write your console.log() calls like above or shorthand as

DEVMODE && console.log('some log message');

the console.log() calls will be stripped from the production code. I can see other benefits to this too outside of stripping console.log(), allowing for other development-specific code to coexist with other Javascript in development mode and only development mode.

share|improve this answer
How can I add this to the assets pipeline? – rossmckelvie Aug 1 '12 at 18:35
I'm researching that (never done it myself), but it may require some monkey patching, as Uglifier does not accept a :defines option. – Deefour Aug 1 '12 at 18:40
I updated my answer for you. – Deefour Aug 1 '12 at 19:50
This solution didn't work for me - Uglify didn't eliminate the dead code. So I did: if <%= Rails.env.production? ? 'null' : 'true' %> then it seemed to work fine. – William Roe Aug 14 '12 at 17:15
Uglify seems to be picky about false values it will recognize as wrapping dead code. I'm not surprised (after my testing for this answer) you needed to tweak it a bit for your application. – Deefour Aug 14 '12 at 22:28

I'd like to mention the solution of bitcrowd. Their idea basically is:

  1. define a data attribute in your body tag that represents the state of your app (development/production/...) - e.g. <body data-env="<%= Rails.env %>">
  2. depending on this let console.log() print something out or do nothing at all - e.g.:

    if ($('body').data('env') == 'production' || typeof console == "undefined"){
        var console = { log: function() {}, debug: function() {}, info: function() {} };
    }
    
share|improve this answer

You could add this to application.js.erb. This solution would prevent any logging to console.log() in production environment, period. But it will still allow logging to console.error().

<% if Rails.env.production? %>
  window.console = {};
  window.console.log = function(){};
<% else %>
  // the || in the code ensures IE compatability
  window.console = window.console || {};
  window.console.log = window.console.log || function(){};
<% end %>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.