-
Notifications
You must be signed in to change notification settings - Fork 5
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
Where should default log go? #16
Comments
I think I don't understand enough about how fertile is put together and the context for "somebody just tries to use |
So there are at least two importantly different use cases here:
In the first case, the In the second case, it's pointless to look at the same log file, because that file contains the actions the user made interactively. So we have to render the code in the project (using Right?? So I'm wondering whether
It's seems likely to me that this is an easy problem to solve, but I just don't understand sessions, environments, and global variables well enough at the moment. The answer will help with #34. |
I continue to not be immersed enough in fertile to have ready and great answers. But I think another candidate location to have on your radar is |
How do we keep track of where the log file goes? At @jennybc 's suggestion I am using
rprojroot
to find the project directory, but to return the working directory iffind_root()
fails.But if somebody just tries to use
read_csv()
, we can't control whether they are in a project or what the working directory is at the time of the call. So to which log file should that event be written?Symptom:
devtools::test()
currently returns 0 errors, butdevtools::check()
returns 3.The text was updated successfully, but these errors were encountered: