6 lines
243 B
Bash
6 lines
243 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# This file runs firefox in a state where the HTTP requests will be logged to the specified file.
|
||
|
|
||
|
firefox -MOZ_LOG=timestamp,rotate:200,nsHttp:5,cache2:5,nsSocketTransport:5,nsHostResolver:5,sync -MOZ_LOG_FILE=./requests/log.txt
|