0
如何在日誌文件中寫入我想從實體類發出的錯誤或消息? 這個想法是這樣的:我有一些項目具有一些屬性,也有一些屬性的配置。我需要檢查該項目是否具有也存在於配置屬性中的屬性。當我調試我的應用程序,在某些時候我在這裏:在日誌文件中寫入類錯誤消息
public function getProperty(idProperty $propertyId)
{
$properties = $this->ItemProperties();
if (isset($properties[$propertyId->getValue()])) {
return $properties[$propertyId->getValue()];
}else{
//here I want to write in the log file that the propertyId is not in the $properties.
}
return null;
}
那麼我該如何實現這一目標?謝謝。
@svgrafox該DomainException類我在哪裏聲明beacuse在onKernelException它說它的未聲明? – IleNea
@IleNea我用解釋更新了我的答案。 – svgrafov