소스 검색

remove debug line

Adam Ierymenko 8 년 전
부모
커밋
a74e9e1dd3
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 1
      osdep/OSUtils.cpp

+ 0 - 1
osdep/OSUtils.cpp

@@ -177,7 +177,6 @@ long OSUtils::cleanDirectory(const char *path,const uint64_t olderThan)
 				if (stat(tmp,&st) == 0) {
 					uint64_t mt = (uint64_t)(st.st_mtime);
 					if ((mt > 0)&&((mt * 1000) < olderThan)) {
-						printf("%s\n",tmp);
 						if (unlink(tmp) == 0)
 							++cleaned;
 					}