소스 검색

Remove extraneous output

Fixes: #472
Lee Clemens 6 년 전
부모
커밋
d40c28db62
1개의 변경된 파일0개의 추가작업 그리고 2개의 파일을 삭제
  1. 0 2
      plugins/check_disk.c

+ 0 - 2
plugins/check_disk.c

@@ -408,7 +408,6 @@ main (int argc, char **argv)
       temp_result2 = get_status(path->dfree_pct, path->freespace_percent);
       if (verbose_machine_output) printf("Freespace%% result=%d\n", temp_result2);
 
-      printf("dfree_units %d %d\n", temp_result, temp_result2);
       if (combined_thresholds) {
         temp_result = min_state(temp_result, temp_result2);
       }
@@ -416,7 +415,6 @@ main (int argc, char **argv)
         temp_result = max_state(temp_result, temp_result2);
       }
       disk_result = max_state(disk_result, temp_result);
-      printf("disk_result is %d", disk_result);
 
       temp_result = get_status(path->dused_units, path->usedspace_units);
       if (verbose_machine_output) printf("Usedspace_units result=%d\n", temp_result);