Skip to content

Commit 9c0813a

Browse files
committed
Update CHANGELOG.md
1 parent 7982032 commit 9c0813a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ ___
99
- IMPROVE: Optimize queries on classes with pointer permissions. [#7061](https://github.com/parse-community/parse-server/pull/7061). Thanks to [Pedro Diaz](https://github.com/pdiaz)
1010
- FIX: request.context for afterFind triggers. [#7078](https://github.com/parse-community/parse-server/pull/7078). Thanks to [dblythy](https://github.com/dblythy)
1111
- NEW: Added convenience method Parse.Cloud.sendEmail(...) to send email via email adapter in Cloud Code. [#7089](https://github.com/parse-community/parse-server/pull/7089). Thanks to [dblythy](https://github.com/dblythy)
12+
- FIX: Winston Logger interpolating stdout to console [#7114](https://github.com/parse-community/parse-server/pull/7114). Thanks to [dplewis](https://github.com/dplewis)
1213

1314
### 4.5.0
1415
[Full Changelog](https://github.com/parse-community/parse-server/compare/4.4.0...4.5.0)

src/LiveQuery/ParseLiveQueryServer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ class ParseLiveQueryServer {
7979
// Register message handler for subscriber. When publisher get messages, it will publish message
8080
// to the subscribers and the handler will be called.
8181
this.subscriber.on('message', (channel, messageStr) => {
82-
logger.verbose('Subscribe messsage %j', messageStr);
82+
logger.verbose('Subscribe message %j', messageStr);
8383
let message;
8484
try {
8585
message = JSON.parse(messageStr);

0 commit comments

Comments
 (0)