Changeset f165fcc2e4bddb47f3119c8b820ab245f84f8a35

Show
Ignore:
Timestamp:
06/11/09 02:35:17 (15 months ago)
Author:
Nedko Arnaudov <nedko@…>
Children:
b22a23babe2588932cbe21cc2932456820a10345
Parents:
8e197ebe8ae3d781b8662f7840b931db5122cd7d
git-committer:
Nedko Arnaudov <nedko@arnaudov.name> / 2009-06-11T02:35:17Z+0300
Message:

Remove debug prints

Files:
3 modified

Legend:

Unmodified
Added
Removed
  • lv2_ui.c

    r47c4611 rf165fcc  
    9797  lo_arg ** argv) 
    9898{ 
    99   printf("OSC: got UI exit notification\n"); 
     99  //printf("OSC: got UI exit notification\n"); 
    100100 
    101101  control_ptr->running = false; 
     
    120120  float value = argv[1]->f; 
    121121 
    122   printf("OSC control handler: port %d = %f\n", port, value); 
     122  //printf("OSC control handler: port %d = %f\n", port, value); 
    123123 
    124124  control_ptr->write_function(control_ptr->controller, (uint32_t)port, sizeof(float), 0, &value); 
     
    137137  char * port; 
    138138 
    139   printf("OSC: got update request from <%s>\n", url); 
     139  //printf("OSC: got update request from <%s>\n", url); 
    140140 
    141141  if (control_ptr->osc_address) 
  • lv2plugin.c

    r6138b26 rf165fcc  
    2323 
    2424#include "lv2filter.h" 
    25 #define LOG_LEVEL LOG_LEVEL_DEBUG 
     25//#define LOG_LEVEL LOG_LEVEL_DEBUG 
    2626#include "log.h" 
    2727 
  • ui

    r8e197eb rf165fcc  
    890890            return 
    891891 
    892         print repr(argv) 
     892        #print repr(argv) 
    893893        self.host_osc_url = argv[1] 
    894894        self.plugin_uri = argv[2] 
     
    12341234def main(): 
    12351235    filter_ui(sys.argv).run() 
    1236     print "main done" 
     1236    #print "main done" 
    12371237 
    12381238if __name__ == '__main__':