-
-
Notifications
You must be signed in to change notification settings - Fork 4
Closed
Description
Describe the bug
When calling log(..) while using a socket connection, the client is supposed to receive the log. This works, but not when using log(..) in a future result.
To Reproduce
future(nil).then(|| {
log('test'); // test is logged on the node, but not received by the client
});Expected behavior
Expecting to receive the log on the client, also when used in a future (when the client uses a socket connection).
Reactions are currently unavailable