正在显示
1 个修改的文件
包含
2 行增加
和
2 行删除
@@ -126,7 +126,7 @@ class ImapClient { | @@ -126,7 +126,7 @@ class ImapClient { | ||
126 | if ($result === 0) { | 126 | if ($result === 0) { |
127 | $maxW--; | 127 | $maxW--; |
128 | if(!$maxW){ | 128 | if(!$maxW){ |
129 | - throw new \Exception('socket write error time out'); | 129 | + throw new \Exception($this->host.' write error time out ('.$this->timeOut.'s)'); |
130 | } | 130 | } |
131 | // 兼容下swoole | 131 | // 兼容下swoole |
132 | if(function_exists('go') && \co::getCid()>0){ | 132 | if(function_exists('go') && \co::getCid()>0){ |
@@ -169,7 +169,7 @@ class ImapClient { | @@ -169,7 +169,7 @@ class ImapClient { | ||
169 | } | 169 | } |
170 | // 超时了,异常 | 170 | // 超时了,异常 |
171 | if(!$i && $str===false){ | 171 | if(!$i && $str===false){ |
172 | - throw new \Exception('read time out'); | 172 | + throw new \Exception($this->host.' read time out ('.$this->timeOut.'s)'); |
173 | } | 173 | } |
174 | 174 | ||
175 | if($this->debug){ | 175 | if($this->debug){ |
-
请 注册 或 登录 后发表评论