diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/TextToImage/Manager.php | 2 | ||||
-rw-r--r-- | lib/public/AppFramework/Bootstrap/IRegistrationContext.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/TextToImage/Manager.php b/lib/private/TextToImage/Manager.php index 64c7a36cc02..eb3ee25b8e0 100644 --- a/lib/private/TextToImage/Manager.php +++ b/lib/private/TextToImage/Manager.php @@ -212,7 +212,7 @@ class Manager implements IManager { 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); diff --git a/lib/public/AppFramework/Bootstrap/IRegistrationContext.php b/lib/public/AppFramework/Bootstrap/IRegistrationContext.php index b956c308c01..e07eb917117 100644 --- a/lib/public/AppFramework/Bootstrap/IRegistrationContext.php +++ b/lib/public/AppFramework/Bootstrap/IRegistrationContext.php @@ -237,7 +237,7 @@ interface IRegistrationContext { * * @param string $providerClass * @psalm-param class-string<ITextToImageProvider> $providerClass - * @since 27.1.0 + * @since 28.0.0 */ public function registerTextToImageProvider(string $providerClass): void; |