diff --git a/slsDetectorServers/slsDetectorServer/src/programFpgaBlackfin.c b/slsDetectorServers/slsDetectorServer/src/programFpgaBlackfin.c index e051827c5..d06b6a5b2 100644 --- a/slsDetectorServers/slsDetectorServer/src/programFpgaBlackfin.c +++ b/slsDetectorServers/slsDetectorServer/src/programFpgaBlackfin.c @@ -174,7 +174,7 @@ int startCopyingFPGAProgram(FILE **fd, uint64_t fsize, char *mess) { LOG(logERROR, (mess)); return FAIL; } - LOG(logINFO, ("%s ready to copy program\n", TEMP_PROG_FILE_NAME)); + LOG(logINFO, ("ready to copy program to %s\n", TEMP_PROG_FILE_NAME)); return OK; } diff --git a/slsDetectorServers/slsDetectorServer/src/slsDetectorServer_funcs.c b/slsDetectorServers/slsDetectorServer/src/slsDetectorServer_funcs.c index 69787fac2..1ee68ce56 100644 --- a/slsDetectorServers/slsDetectorServer/src/slsDetectorServer_funcs.c +++ b/slsDetectorServers/slsDetectorServer/src/slsDetectorServer_funcs.c @@ -3746,10 +3746,9 @@ int program_fpga(int file_des) { uint64_t unitprogramsize = MAX_FPGAPROGRAMSIZE; // 2mb if (unitprogramsize > filesize) // less than 2mb unitprogramsize = filesize; - LOG(logINFOBLUE, - ("unit size to receive is:%lld [filesize:%lld]\n", - (long long unsigned int)unitprogramsize, - (long long unsigned int)filesize)); + LOG(logDEBUG1, ("unit size to receive is:%lld [filesize:%lld]\n", + (long long unsigned int)unitprogramsize, + (long long unsigned int)filesize)); // receive part of program if (receiveData(file_des, src, unitprogramsize, OTHER) < 0) { diff --git a/slsDetectorSoftware/src/Module.cpp b/slsDetectorSoftware/src/Module.cpp index 5ab81e61a..4f94f8254 100644 --- a/slsDetectorSoftware/src/Module.cpp +++ b/slsDetectorSoftware/src/Module.cpp @@ -3436,11 +3436,10 @@ void Module::programFPGAviaBlackfin(std::vector buffer) { if (unitprogramsize > filesize) { // less than 2mb unitprogramsize = filesize; } - LOG(logINFOBLUE) << "unitprogramsize:" << unitprogramsize - << "\t filesize:" << filesize; + LOG(logDEBUG) << "unitprogramsize:" << unitprogramsize + << "\t filesize:" << filesize; client.Send(&buffer[currentPointer], unitprogramsize); - LOG(logINFOBLUE) << "sent!"; if (client.Receive() == FAIL) { std::cout << '\n'; std::ostringstream os;