Skip to content

Commit

Permalink
Merge pull request #661 from ut-issl/feature/move-logs-directory
Browse files Browse the repository at this point in the history
Move logs directory
  • Loading branch information
200km authored Aug 8, 2024
2 parents c0d9dd9 + 0e2fb49 commit 295c4c4
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ src/.vscode/
build/

# Log files
data/**/logs/
**/logs/

# CSIPCE
scripts/tmp_cspice/
Expand Down
2 changes: 1 addition & 1 deletion data/sample/initialize_files/sample_simulation_base.ini
Original file line number Diff line number Diff line change
Expand Up @@ -147,4 +147,4 @@ number_of_simulated_ground_station = 1
spacecraft_file(0) = INI_FILE_DIR_FROM_EXE/sample_satellite.ini
ground_station_file(0) = INI_FILE_DIR_FROM_EXE/sample_ground_station.ini
gnss_file = INI_FILE_DIR_FROM_EXE/sample_gnss.ini
log_file_save_directory = ../../data/sample/logs/
log_file_save_directory = ../../logs/
File renamed without changes.
2 changes: 1 addition & 1 deletion scripts/Plot/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def read_scalar_from_csv(read_file_name, header_name):
return vector

def add_log_file_arguments(aparser):
aparser.add_argument('--logs-dir', type=str, help='logs directory like "../../data/sample/logs"', default='../../data/sample/logs')
aparser.add_argument('--logs-dir', type=str, help='logs directory like "../../logs"', default='../../logs')
aparser.add_argument('--file-tag', type=str, help='log file tag like 220627_142946')
return aparser

Expand Down

0 comments on commit 295c4c4

Please sign in to comment.