mirror of
https://github.com/dkgrizzly/GreenSCSI.git
synced 2025-01-02 01:29:24 +00:00
Add additional information to log file
This commit is contained in:
parent
2904d62c55
commit
1211f722f6
@ -411,8 +411,13 @@ void setup()
|
|||||||
*/
|
*/
|
||||||
void initFileLog() {
|
void initFileLog() {
|
||||||
LOG_FILE = SD.open(LOG_FILENAME, O_WRONLY | O_CREAT);
|
LOG_FILE = SD.open(LOG_FILENAME, O_WRONLY | O_CREAT);
|
||||||
|
LOG_FILE.println("BlueSCSI <-> SD - https://github.com/erichelgeson/BlueSCSI");
|
||||||
LOG_FILE.print("VERSION: ");
|
LOG_FILE.print("VERSION: ");
|
||||||
LOG_FILE.println(VERSION);
|
LOG_FILE.println(VERSION);
|
||||||
|
LOG_FILE.print("DEBUG:");
|
||||||
|
LOG_FILE.print(DEBUG);
|
||||||
|
LOG_FILE.print(" SCSI_SELECT:");
|
||||||
|
LOG_FILE.println(SCSI_SELECT);
|
||||||
LOG_FILE.println("Initialized SD Card - lets go!");
|
LOG_FILE.println("Initialized SD Card - lets go!");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user