-
Notifications
You must be signed in to change notification settings - Fork 12
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
Improve logging #157
Improve logging #157
Conversation
@balhoff Sorry to be dense, but this is not working for me yet. Is there any chance that things are going wrong because of the Dockerfile? I just noticed that nothing was really rebuilt when I did the
What's disturbing is that when I add the
I would expect that step 9 would force a rebuild, but it does not -- instead it treats the tarball as if it is cached. Is that the expected behavior? |
@balhoff This was my original report, before I noticed the Dockerfile issue above: I have done the following
But I am not seeing the logger output yet. I slightly modified your config file as follows, but the only change was the filename used -- I put it into the docker container.
and I see that my command line configuration seems to work:
|
I see! It may be that it's not being rebuilt. I don't use docker myself so I have not been running that way. I'll look at the docker build as soon as I am able. |
@rpgoldman Docker caches image layers locally when building (each command is a layer). If the commands didn't change it will use the cached layer(s). You would first need to remove the image you already have, or supply |
Addresses #131. I added logback and tried to clean up the logging packages pulled in via various dependencies. I also turned on request logging within akka-http.
@rpgoldman you should now be able to provide your own logback.xml via the command line. I included one in
src/main/resources/logback.xml
that prints at the DEBUG level. You should see a lot of OWL API output.