DSDPlus Can you delete CC.log and 1r.log.txt files periodically?

Status
Not open for further replies.

shajoe44

Member
Joined
Dec 11, 2000
Messages
489
Location
North Augusta, SC
Is it ok to delete the cc.log and 1r.log text files periodically since they get rather large. Wasn't sure if information in these 2 files were needed or not. Thanks
 

thewraith2008

Member
Joined
Nov 22, 2016
Messages
1,845
If you do not need for the log file for the moment, you could just remove the option in the batch file (command line) which will stop it's creation.
Code:
>>filename.log

Alternatively you could use this option:
Code:
>filename.log
Which will overwrite an existing file with empty one and save log data for each session. (not append like the >> option)
This will keep the file smaller. NOTE: If you run a session for weeks at a time then it will still grow large.

You could also add the following to your batch file if these files are also not needed by you:
Code:
del filename.event
del filename.srt
This will delete these two files which can grow to large sizes.
Replace 'filename' with real names of file.
 

oojimentis

Member
Premium Subscriber
Joined
Aug 1, 2006
Messages
6
You can also control how much gets written using the -v (0-4) verbosity option - default is 3
 

katt02

Katt
Joined
Oct 25, 2018
Messages
179
Adding onto the question, Is it ok to delete 1R-DSDPlus.wav? The file is nearing 3 gigabytes now.
 

a417

Active Member
Joined
Mar 14, 2004
Messages
4,669
if you have never used it for anything, you are letting the program create a massive file for nothing. If you are using it for manual offline decoding or something else that's different.
Code:
-O NUL  <<-- disables wav/mp3 file creation

if you are looking for per call file recording (which is what I presume most people want)
Code:
-PTmp3  <<----creates per call mp3, tagged by TGID in subfolders by day.
 
Status
Not open for further replies.
Top