aboutsummaryrefslogtreecommitdiff
path: root/launcher/net
diff options
context:
space:
mode:
authorTrial97 <alexandru.tripon97@gmail.com>2023-06-09 21:29:12 +0300
committerTrial97 <alexandru.tripon97@gmail.com>2023-06-09 21:29:12 +0300
commitb3d743635c86aac583fb802c1e3c7aa25e12dc88 (patch)
tree6ea55b29fba72a39c6bbdeafe3e1122d99f1f7c0 /launcher/net
parentf2932c6d0387c41bd876d4af4148a7ffb5c83154 (diff)
downloadPrismLauncher-b3d743635c86aac583fb802c1e3c7aa25e12dc88.tar.gz
PrismLauncher-b3d743635c86aac583fb802c1e3c7aa25e12dc88.tar.bz2
PrismLauncher-b3d743635c86aac583fb802c1e3c7aa25e12dc88.zip
Updated the messages
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
Diffstat (limited to 'launcher/net')
-rw-r--r--launcher/net/ByteArraySink.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/launcher/net/ByteArraySink.h b/launcher/net/ByteArraySink.h
index 0d77727e..728193b3 100644
--- a/launcher/net/ByteArraySink.h
+++ b/launcher/net/ByteArraySink.h
@@ -56,7 +56,7 @@ class ByteArraySink : public Sink {
if (m_output)
m_output->clear();
else
- qWarning() << "ByteArraySink was not cleared because it's not adresable";
+ qWarning() << "ByteArraySink did not initialize the buffer because it's not addressable";
if (initAllValidators(request))
return Task::State::Running;
return Task::State::Failed;
@@ -67,7 +67,7 @@ class ByteArraySink : public Sink {
if (m_output)
m_output->append(data);
else
- qWarning() << "ByteArraySink no write because it's not adresable";
+ qWarning() << "ByteArraySink did not write the buffer because it's not addressable";
if (writeAllValidators(data))
return Task::State::Running;
return Task::State::Failed;
@@ -78,7 +78,7 @@ class ByteArraySink : public Sink {
if (m_output)
m_output->clear();
else
- qWarning() << "ByteArraySink no clear because it's not adresable";
+ qWarning() << "ByteArraySink did not clear the buffer because it's not addressable";
failAllValidators();
return Task::State::Failed;
}