We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 33b2fd7 + 43ca9c1 commit ebe1fd2Copy full SHA for ebe1fd2
codecov.yml
@@ -9,4 +9,4 @@ coverage:
9
target: "80"
10
patch:
11
default:
12
- target: "80"
+ target: "70"
src/ssb_project_cli/ssb_project/util.py
@@ -117,7 +117,9 @@ def create_error_log(
117
filename = f"{calling_function}-error-{int(time.time())}.txt"
118
with open(f"{error_logs_path}/{filename}", "w+") as f:
119
f.write(log)
120
- print(f"Detailed error information saved to {error_logs_path}/{filename}")
+ print(
121
+ f"Detailed error information can be viewed with the terminal command 'cat {error_logs_path}/{filename}'"
122
+ )
123
print(
124
f"You can find the full debug log here {error_logs_path}/ssb-project-debug.log"
125
)
0 commit comments