diff --git a/docs/concepts/crews.mdx b/docs/concepts/crews.mdx index b9606263b..bd520da4b 100644 --- a/docs/concepts/crews.mdx +++ b/docs/concepts/crews.mdx @@ -252,8 +252,7 @@ If you want to save the logs as a list of JSON events, set `save_as_json` parame crew = Crew(output_log_file = True, save_as_json = False) # Logs will be saved as logs.txt crew = Crew(output_log_file = file_name, save_as_json = False) # Logs will be saved as file_name.txt crew = Crew(output_log_file = True, save_as_json = True) # Logs will be saved as logs.json -crew = Crew(output_log_file = file_name, save_as_json = False) # Logs will be saved as file_name.json - +crew = Crew(output_log_file = file_name, save_as_json = True) # Logs will be saved as file_name.json ```