Merge pull request #3877 from tgsm/soc-logging-macro

Service/SOC: migrate logging macro
This commit is contained in:
Weiyi Wang 2018-06-23 12:24:53 +03:00 committed by GitHub
commit fc62da57be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -463,7 +463,7 @@ static void Fcntl(Interface* self) {
} }
#endif #endif
} else { } else {
LOG_ERROR(Service_SOC, "Unsupported command (%d) in fcntl call", ctr_cmd); NGLOG_ERROR(Service_SOC, "Unsupported command ({}) in fcntl call", ctr_cmd);
posix_ret = TranslateError(EINVAL); // TODO: Find the correct error posix_ret = TranslateError(EINVAL); // TODO: Find the correct error
return; return;
} }