@@ -241,7 +241,7 @@ def nimbus(klass="backtype.storm.daemon.nimbus"):
241
241
"""
242
242
cppaths = [STORM_DIR + "/conf" ]
243
243
jvmopts = parse_args (confvalue ("nimbus.childopts" , cppaths )) + [
244
- "-Dlogfile.name=nimbus" ,
244
+ "-Dlogfile.name=nimbus.log " ,
245
245
"-Dlogback.configurationFile=" + STORM_DIR + "/logback/cluster.xml" ,
246
246
]
247
247
exec_storm_class (
@@ -261,7 +261,7 @@ def supervisor(klass="backtype.storm.daemon.supervisor"):
261
261
"""
262
262
cppaths = [STORM_DIR + "/conf" ]
263
263
jvmopts = parse_args (confvalue ("supervisor.childopts" , cppaths )) + [
264
- "-Dlogfile.name=supervisor" ,
264
+ "-Dlogfile.name=supervisor.log " ,
265
265
"-Dlogback.configurationFile=" + STORM_DIR + "/logback/cluster.xml" ,
266
266
]
267
267
exec_storm_class (
@@ -282,7 +282,7 @@ def ui():
282
282
"""
283
283
cppaths = [STORM_DIR + "/conf" ]
284
284
jvmopts = parse_args (confvalue ("ui.childopts" , cppaths )) + [
285
- "-Dlogfile.name=ui" ,
285
+ "-Dlogfile.name=ui.log " ,
286
286
"-Dlogback.configurationFile=" + STORM_DIR + "/logback/cluster.xml" ,
287
287
]
288
288
exec_storm_class (
@@ -301,7 +301,7 @@ def drpc():
301
301
(https://github.com/nathanmarz/storm/wiki/Distributed-RPC)
302
302
"""
303
303
jvmopts = ["-Xmx768m" ,
304
- "-Dlogfile.name=drpc" ,
304
+ "-Dlogfile.name=drpc.log " ,
305
305
"-Dlogback.configurationFile=" + STORM_DIR + "/logback/cluster.xml"
306
306
]
307
307
exec_storm_class (
0 commit comments