# File lib/compass/logger.rb, line 32 def record(action, *arguments) msg = "" msg << color(ACTION_COLORS[action]) if Compass.configuration.color_output msg << "#{action_padding(action)}#{action} #{arguments.join(' ')}" msg << color(:clear) if Compass.configuration.color_output log msg end