function ctools_stylizer_image_processor::log
13 calls to ctools_stylizer_image_processor::log()
- ctools_stylizer_image_processor::command_colorize in includes/
stylizer.inc  - Colorize the current workspace with the given location.
 - ctools_stylizer_image_processor::command_fill in includes/
stylizer.inc  - ctools_stylizer_image_processor::command_gradient in includes/
stylizer.inc  - ctools_stylizer_image_processor::command_hue in includes/
stylizer.inc  - Colorize the current workspace with the given location.
 - ctools_stylizer_image_processor::command_load in includes/
stylizer.inc  - Create a new workspace a file.
 
File
- 
              includes/
stylizer.inc, line 271  
Class
Code
function log($message, $type = 'normal') {
  $this->message_log[] = $message;
  if ($type == 'error') {
    $this->error_log[] = $message;
  }
}