Project

General

Profile

Revision 516

commenting out some prints

View differences:

ConnectionPool.cpp
198 198
    return ERROR_NOT_ENOUGH_ROOM;
199 199
  }
200 200

  
201
  printf("Connection pool: attempting to write [%s], length %i to index %i.\n", message, length, pool_index);
201
  //printf("Connection pool: attempting to write [%s], length %i to index %i.\n", message, length, pool_index);
202 202

  
203 203
  memcpy(write_buffer[pool_index], message, length);
204 204
  write_buffer_size[pool_index] += length;
......
291 291
      memmove(temporary_buffer, temporary_buffer+length, READ_BUFFER_SIZE - length);
292 292
    }
293 293

  
294
    printf("read_data: Read buffer is %s\n", read_buffer[pool_index]);
294
    //printf("read_data: Read buffer is %s\n", read_buffer[pool_index]);
295 295

  
296 296
    char* newline_position;
297 297

  

Also available in: Unified diff