| Summary: | [server] Entries in log from gitfs.. Already-up-to-date | ||
|---|---|---|---|
| Product: | [ECD] Orion | Reporter: | John Arthorne <john.arthorne> |
| Component: | Client | Assignee: | Tomasz Zarna <tomasz.zarna> |
| Status: | RESOLVED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | ||
| Version: | 0.2 | ||
| Target Milestone: | 0.2 | ||
| Hardware: | PC | ||
| OS: | Windows 7 | ||
| Whiteboard: | |||
|
Description
John Arthorne
This is not an error indeed, it's an info message logged in org.eclipse.orion.server.filesystem.git.GitFileStore.pull() with IStatus.INFO severity. I've set "eclipse.log.level" system property to WARNING in all launch configurations. I guess this will be controlled by a logback configuration eventually. (In reply to comment #1) > I've set "eclipse.log.level" system property to WARNING in all launch > configurations. I guess this will be controlled by a logback configuration > eventually. The main problem case is on orion.eclipse.org, which doesn't use a launch configuration. Why do you even need to log an INFO about this? I see, well I'm saving it for a case when the pull did actually take place and a merge was done. However, I don't have any strong feelings about it, so feel free to remove it (or comment out). I still think that a log configuration filtering out such entries would be an apt choice. I have converted this to a Log4j call. It is now disabled by default but can be enabled by uncommenting this line in logback.xml: <!-- <logger name="org.eclipse.orion.server.filesystem.git.GitFileStore" level="INFO"/> --> Thanks John. Should I now remove the eclipse.log.level property from launch configurations (comment 1) or leave it just in case? btw, you made fixing bug 335474 so easy with the conversion to Log4j, thanks. (In reply to comment #5) > Thanks John. Should I now remove the eclipse.log.level property from launch > configurations (comment 1) or leave it just in case? Probably better to remove it, just in case it hides a message that is useful to someone. Good point, it's removed and the change has been pushed to master. |