aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMarcel Klehr <mklehr@gmx.net>2023-10-23 15:00:40 +0200
committerMarcel Klehr <mklehr@gmx.net>2023-10-23 15:00:40 +0200
commit8339b5b12857b2fc3a25b289cb063a90499d0da3 (patch)
treec5853d6b2020efd36c20b38e598fc5a47d9c2693 /lib
parent0c1bd845a73cebf18a73c2ee5f2a06e602ca5963 (diff)
downloadnextcloud-server-8339b5b12857b2fc3a25b289cb063a90499d0da3.tar.gz
nextcloud-server-8339b5b12857b2fc3a25b289cb063a90499d0da3.zip
fix: Minor copypasta
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
Diffstat (limited to 'lib')
-rw-r--r--lib/private/TextToImage/Manager.php2
-rw-r--r--lib/public/AppFramework/Bootstrap/IRegistrationContext.php2
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;