Looking for MQTT client library

2015-03-12 Thread o3o via Digitalmars-d-learn
I'm looking a MQTT [0] client library written in D, if it exists. Anyone know of any? I found the great Atila Neves MQTT broker (server) [1], and some C/C++ libraries [2], so, possible solutions are: a. Write a native D library from scratch b. Adapt/copy some parts of [1] to convert from

Re: vibe.d community/forum/whatever ?

2023-01-26 Thread o3o via Digitalmars-d-learn
On Monday, 23 January 2023 at 01:51:41 UTC, Rey Valeza wrote: On Monday, 30 August 2021 at 02:39:06 UTC, someone wrote: https://forum.rejectedsoftware.com/groups/rejectedsoftware.vibed/ I've been reading vibe.d tour and some documentation today to get some first impressions.

std.logger issue

2023-01-26 Thread o3o via Digitalmars-d-learn
``` // rdmd --main -unitest app.d import std.stdio; import std.logger; unittest { globalLogLevel = LogLevel.all; infof("g: %s", globalLogLevel); trace("trace"); // NO output! info("info"); warning("warn"); error("error"); } ``` output is: ``` 2023-01-26T18:16:13.546 [info]

Re: std.logger issue

2023-01-27 Thread o3o via Digitalmars-d-learn
On Thursday, 26 January 2023 at 20:08:51 UTC, Krzysztof Jajeśnica wrote: On Thursday, 26 January 2023 at 17:17:28 UTC, o3o wrote: how can I enable `trace` level? Set `sharedLog.logLevel` instead of `globalLogLevel`. ```d // Note: the cast is needed because sharedLog is shared