Skip to content

Commit d331f80

Browse files
committed
truncating debug print
1 parent be28c0a commit d331f80

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/datafunctions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1127,7 +1127,7 @@ def build_cache(app_dir: Path) -> int:
11271127
env_variables = read_env_file(config_path / '.env', ['SETS_CF_CLEARANCE', 'SETS_USER_AGENT'])
11281128
requests_session = Session()
11291129
if 'SETS_CF_CLEARANCE' in env_variables:
1130-
print(f'[Info] "SETS_CF_CLEARANCE" variable: "{env_variables["SETS_CF_CLEARANCE"]}"...')
1130+
print(f'[Info] "SETS_CF_CLEARANCE" variable: "{env_variables["SETS_CF_CLEARANCE"][:10]}"')
11311131
requests_session.cookies.set_cookie(
11321132
create_cookie(name='cf_clearance', value=env_variables['SETS_CF_CLEARANCE']))
11331133
if 'SETS_USER_AGENT' in env_variables:

0 commit comments

Comments
 (0)