Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify documentation in the replay log. #578

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions restler/utils/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -521,8 +521,9 @@ def log_new_bug():
if additional_log_str is not None:
print(f" {additional_log_str}\n", file=bug_file)
print(f" Hash: {bug_hash}\n", file=bug_file)
print(" To attempt to reproduce this bug using restler, run restler with the command", file=bug_file)
print(" line option of --replay_log <path_to_this_log>.", file=bug_file)
print(" To attempt to reproduce this bug using restler, run RESTler in replay mode", file=bug_file)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

RESTler in

remove

print(" with the command line option of --replay_log <path_to_this_log>.", file=bug_file)
print(" See the documentation at https://github.com/microsoft/restler-fuzzer/blob/main/docs/user-guide/Replay.md for examples.", file=bug_file)
print(" If an authentication token is required, you must also specify the token_refresh_cmd.", file=bug_file)
print("\n This log may contain specific values for IDs or names that were generated", file=bug_file)
print(" during fuzzing, using the fuzzing dictionary. Such names will be re-played", file=bug_file)
Expand Down