Skip to content

Commit

Permalink
fix: Minor copypasta
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Klehr <[email protected]>
  • Loading branch information
marcelklehr committed Oct 23, 2023
1 parent 0c1bd84 commit 8339b5b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/private/TextToImage/Manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ public function scheduleTask(Task $task): void {
if (!$this->hasProviders()) {
throw new PreConditionNotMetException('No text to image provider is installed that can handle this task');
}
$this->logger->warning('Scheduling Text2Image Task');
$this->logger->debug('Scheduling Text2Image Task');
$task->setStatus(Task::STATUS_SCHEDULED);
$taskEntity = DbTask::fromPublicTask($task);
$this->taskMapper->insert($taskEntity);
Expand Down
2 changes: 1 addition & 1 deletion lib/public/AppFramework/Bootstrap/IRegistrationContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ public function registerTextProcessingProvider(string $providerClass): void;
*
* @param string $providerClass
* @psalm-param class-string<ITextToImageProvider> $providerClass
* @since 27.1.0
* @since 28.0.0
*/
public function registerTextToImageProvider(string $providerClass): void;

Expand Down

0 comments on commit 8339b5b

Please sign in to comment.