| Index: tools/bots/compiler.py
 | 
| diff --git a/tools/bots/compiler.py b/tools/bots/compiler.py
 | 
| index 7e60dddaf75c6c43fdbfe358873ec19d64ade2b9..02d6ecb6b12de2d1728832fe245dc18aa2608c30 100644
 | 
| --- a/tools/bots/compiler.py
 | 
| +++ b/tools/bots/compiler.py
 | 
| @@ -121,7 +121,8 @@ def TestStep(name, mode, system, compiler, runtime, targets, flags):
 | 
|                  '--runtime=' + runtime,
 | 
|                  '--time',
 | 
|                  '--use-sdk',
 | 
| -                '--report'])
 | 
| +                '--report',
 | 
| +                '--write-debug-log'])
 | 
|  
 | 
|      # TODO(ricow/kustermann): Issue 7339
 | 
|      if runtime == "safari":
 | 
| @@ -136,7 +137,7 @@ def TestStep(name, mode, system, compiler, runtime, targets, flags):
 | 
|      if IsFirstTestStepCall:
 | 
|        IsFirstTestStepCall = False
 | 
|      else:
 | 
| -      cmd.append('--append_flaky_log')
 | 
| +      cmd.append('--append_logs')
 | 
|  
 | 
|      if flags:
 | 
|        cmd.extend(flags)
 | 
| 
 |