-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error: Request logging is disabled #29
Comments
I think this was resolved via hoodiehq/hoodie#600, released in https://github.com/hoodiehq/hoodie/releases/tag/v24.2.1, can you check please? |
Actually, that does not solve the problem. I'm already on hoodie 24.2.2... It looks like these lines do not use getHapiOptions()... |
you are right! Hmm ... We kinda have a lot of code duplication here. I wonder if we should use some internal code here from the var getHapiOptions = require('hoodie/cli/hapi-options') it’s usually bad practice, but still better than duplicating the code and risking it gets out of sync like it did now. Another option is to remove the server component entirely from What do you think? |
I must say I feel, as an app dev, it's very inviting to install an ember addon, type Maybe the hoodie module could expose a configured hapi server instance? |
Yeah I agree
I’m not sure what you mean by that? We can either use hoodie which comes with the whole package, or we use @hoodie/server which only has the backend components for store & account |
I mean, if just an idea, btw... |
actually, the run function does configre other things... not just the |
I'm running this example app and, at the moment I submit the login request the process is running
ember s
stops with the following error:I researched a little and found out that this error is thrown by this assert.
I changed these lines to include
routes: { log: true }
just like someone proposed here, and the error stopped.The text was updated successfully, but these errors were encountered: