本文整理汇总了PHP中Craft::Log方法的典型用法代码示例。如果您正苦于以下问题:PHP Craft::Log方法的具体用法?PHP Craft::Log怎么用?PHP Craft::Log使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Craft
的用法示例。
在下文中一共展示了Craft::Log方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: runTask
/**
* Runs a given task.
*
* @param TaskModel $task
*
* @return bool
*/
public function runTask(TaskModel $task)
{
$error = null;
try {
$taskRecord = $this->_getTaskRecordById($task->id);
$taskType = $task->getTaskType();
if ($taskType) {
// Figure out how many total steps there are.
$task->totalSteps = $taskType->getTotalSteps();
$task->status = TaskStatus::Running;
Craft::Log('Starting task ' . $taskRecord->type . ' that has a total of ' . $task->totalSteps . ' steps.', LogLevel::Info, true);
for ($step = 0; $step < $task->totalSteps; $step++) {
// Update the task
$task->currentStep = $step + 1;
$this->saveTask($task);
Craft::Log('Starting step ' . ($step + 1) . ' of ' . $task->totalSteps . ' total steps.', LogLevel::Info, true);
// Run it.
if (($result = $taskType->runStep($step)) !== true) {
// Did they give us an error to report?
if (is_string($result)) {
$error = $result;
} else {
$error = true;
}
break;
}
}
} else {
$error = 'Could not find the task component type.';
}
} catch (\Exception $e) {
$error = 'An exception was thrown: ' . $e->getMessage();
}
if ($task == $this->_nextPendingTask) {
// Don't run this again
$this->_nextPendingTask = null;
}
if ($error === null) {
Craft::log('Finished task ' . $task->id . ' (' . $task->type . ').', LogLevel::Info, true);
// We're done with this task, nuke it.
$taskRecord->deleteNode();
return true;
} else {
$this->fail($task, $error);
return false;
}
}
示例2: destroy
public function destroy()
{
$seoModel = EmSeoRecord::Model()->find();
$groupId = $seoModel->getAttribute('seo_group_id');
if ($groupId) {
craft()->fields->deleteGroupById(intval($groupId));
} else {
Craft::Log("Error Deleting the SEO Group. Please destroy manually");
}
}