Atlas Yu

Results 2 comments of Atlas Yu

my workaround is to change working directory to where the package.json locates, then run the pm2 command. ```bash $ file $(which serve) /usr/local/bin/serve: symbolic link to ../lib/node_modules/serve/build/main.js $ cd /usr/local/lib/node_modules/serve...

Hey @lawrence-laz , You may specify the `std.testing.log_level`, I guess. ```zig const std = @import("std"); test "nothing" { std.testing.log_level = .info; std.log.info("nothing", .{}); std.log.debug("nothing", .{}); std.log.warn("nothing", .{}); try std.testing.expect(true); }...