Skip to content

Commit 8c7ba73

Browse files
committed
remove the print debug message
1 parent 57cca34 commit 8c7ba73

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/Qiniu/Config.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
final class Config
55
{
6-
const SDK_VER = '7.2.0';
6+
const SDK_VER = '7.2.1';
77

88
const BLOCK_SIZE = 4194304; //4*1024*1024 分块上传块大小,该参数为接口规格,不能修改
99

@@ -121,14 +121,11 @@ private function getZone($accessKey, $bucket)
121121
$cacheId = "$accessKey:$bucket";
122122

123123
if (isset($this->zoneCache[$cacheId])) {
124-
//print("from cache\n");
125124
$zone = $this->zoneCache[$cacheId];
126125
} elseif (isset($this->zone)) {
127-
//print("from set\n");
128126
$zone = $this->zone;
129127
$this->zoneCache[$cacheId] = $zone;
130128
} else {
131-
//print("from query\n");
132129
$zone = Zone::queryZone($accessKey, $bucket);
133130
$this->zoneCache[$cacheId] = $zone;
134131
}

0 commit comments

Comments
 (0)