Airship\Engine\Continuum\Installer::getLogContext PHP Method

getLogContext() public method

Get information for logging purposes
public getLogContext ( InstallFile $installFile ) : array
$installFile InstallFile
return array
    public function getLogContext(InstallFile $installFile) : array
    {
        return ['action' => 'INSTALL', 'name' => $this->package, 'supplier' => $this->supplier->getName(), 'type' => $this->type, 'installFile' => ['checksum' => $installFile->getHash(), 'filesize' => $installFile->getSize(), 'merkleRoot' => $installFile->getMerkleRoot(), 'signature' => $installFile->getSignature(), 'version' => $installFile->getVersion()]];
    }