Skip to content
This repository has been archived by the owner on Apr 22, 2021. It is now read-only.

Commit

Permalink
Slightly improve logging messages
Browse files Browse the repository at this point in the history
  • Loading branch information
DaCoolX authored Feb 23, 2020
1 parent ddee2a5 commit f0ba85b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/com/sheepit/client/standalone/Worker.java
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,13 @@ public class Worker {
@Option(name = "-memory", usage = "Maximum memory allow to be used by renderer, number with unit (800M, 2G, ...)", required = false)
private String max_ram = null;

@Option(name = "-rendertime", usage = "Maximum time allow for each frame (in minute)", required = false)
@Option(name = "-rendertime", usage = "Maximum time allow for each frame (in minutes)", required = false)
private int max_rendertime = -1;

@Option(name = "--verbose", usage = "Display log", required = false)
private boolean print_log = false;

@Option(name = "-request-time", usage = "H1:M1-H2:M2,H3:M3-H4:M4 Use the 24h format. For example to request job between 2am-8.30am and 5pm-11pm you should do --request-time 2:00-8:30,17:00-23:00 Caution, it's the requesting job time to get a project not the working time", metaVar = "2:00-8:30,17:00-23:00", required = false)
@Option(name = "-request-time", usage = "H1:M1-H2:M2,H3:M3-H4:M4 Use the 24h format. For example to request job between 2am-8.30am and 5pm-11pm you should do --request-time 2:00-8:30,17:00-23:00 Caution, it's the requesting job time to get a project, not the working time", metaVar = "2:00-8:30,17:00-23:00", required = false)
private String request_time = null;

@Option(name = "-proxy", usage = "URL of the proxy", metaVar = "http://login:password@host:port", required = false)
Expand Down

0 comments on commit f0ba85b

Please sign in to comment.