I'd suggest to remove the log module.
It isn't cross platform compatible, has the lowest JSR score of all @std packages with 88%, and is still unstable. The API has not evolved since originally porting it from Go, the API doesn't really fit JavaScript with magical global state that's influenced by the setup function, which the user must take care to always call first before any implementing library.
It's the only framework in the standard library. There are different ways to do a framework and not one best solution. There are various third-party frameworks, often better maintained and cross platform. Frameworks aren't a good fit for a standard library.
It's why a HTTP framework wasn't added multiple times #144 (comment) #1555 (comment). Related #1295.
I'd suggest to remove the log module.
It isn't cross platform compatible, has the lowest JSR score of all
@stdpackages with 88%, and is still unstable. The API has not evolved since originally porting it from Go, the API doesn't really fit JavaScript with magical global state that's influenced by thesetupfunction, which the user must take care to always call first before any implementing library.It's the only framework in the standard library. There are different ways to do a framework and not one best solution. There are various third-party frameworks, often better maintained and cross platform. Frameworks aren't a good fit for a standard library.
It's why a HTTP framework wasn't added multiple times #144 (comment) #1555 (comment). Related #1295.