Browse Source

no message

Hongtae Kim 8 years ago
parent
commit
3416bdb964
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      TestApp1/TestApp1.cpp

+ 1
- 1
TestApp1/TestApp1.cpp View File

51
 		{
51
 		{
52
 			if (buckets[i].totalChunks > 0)
52
 			if (buckets[i].totalChunks > 0)
53
 			{
53
 			{
54
-				DKLog("--> %lu:  %lu/%lu (usage:%.1f%%, used:%.1KB, total%.1fKB)",
54
+				DKLog("--> %5lu:  %5lu/%5lu, usage: %.1f%%, used: %.1fKB, total: %.1fKB",
55
 					buckets[i].chunkSize,
55
 					buckets[i].chunkSize,
56
 					buckets[i].usedChunks, buckets[i].totalChunks,
56
 					buckets[i].usedChunks, buckets[i].totalChunks,
57
 					double(buckets[i].usedChunks) / double(buckets[i].totalChunks) * 100.0,
57
 					double(buckets[i].usedChunks) / double(buckets[i].totalChunks) * 100.0,