Skip to content
Snippets Groups Projects
Commit 0efd237c authored by Max Y's avatar Max Y
Browse files

MAGETWO-31949: Error message after successful install

parent 4393143e
Branches
No related merge requests found
...@@ -164,7 +164,9 @@ class WebLogger implements LoggerInterface ...@@ -164,7 +164,9 @@ class WebLogger implements LoggerInterface
*/ */
public function clear() public function clear()
{ {
unlink($this->logFile); if (file_exists($this->logFile)) {
unlink($this->logFile);
}
} }
/** /**
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment