We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 80de39b + 36d4120 commit 57cca34Copy full SHA for 57cca34
src/Qiniu/Config.php
@@ -121,14 +121,14 @@ private function getZone($accessKey, $bucket)
121
$cacheId = "$accessKey:$bucket";
122
123
if (isset($this->zoneCache[$cacheId])) {
124
- print("from cache\n");
+ //print("from cache\n");
125
$zone = $this->zoneCache[$cacheId];
126
} elseif (isset($this->zone)) {
127
- print("from set\n");
+ //print("from set\n");
128
$zone = $this->zone;
129
$this->zoneCache[$cacheId] = $zone;
130
} else {
131
- print("from query\n");
+ //print("from query\n");
132
$zone = Zone::queryZone($accessKey, $bucket);
133
134
}
0 commit comments