Make sure all logging ends with newline

This commit is contained in:
topjohnwu 2020-12-02 00:55:22 -08:00
parent a848f10bba
commit 797ba4fbf4
5 changed files with 8 additions and 8 deletions

View File

@ -61,7 +61,7 @@ static void mount_mirrors() {
char buf1[4096];
char buf2[4096];
LOGI("* Mounting mirrors");
LOGI("* Mounting mirrors\n");
parse_mnt("/proc/mounts", [&](mntent *me) {
struct stat st;

View File

@ -359,7 +359,7 @@ bool validate_manager(string &pkg, int userid, struct stat *st) {
// Check the official package name
sprintf(app_path, "%s/%d/" JAVA_PACKAGE_NAME, APP_DATA_DIR, userid);
if (stat(app_path, st)) {
LOGE("su: cannot find manager");
LOGE("su: cannot find manager\n");
memset(st, 0, sizeof(*st));
pkg.clear();
return false;

View File

@ -82,7 +82,7 @@ int recv_fd(int sockfd) {
cmsg->cmsg_level != SOL_SOCKET ||
cmsg->cmsg_type != SCM_RIGHTS) {
error:
LOGE("unable to read fd");
LOGE("unable to read fd\n");
exit(-1);
}

View File

@ -185,7 +185,7 @@ void su_daemon_handler(int client, struct ucred *credential) {
// Fail fast
if (ctx.info->access.policy == DENY) {
LOGW("su: request rejected (%u)", ctx.info->uid);
LOGW("su: request rejected (%u)\n", ctx.info->uid);
ctx.info.reset();
write_int(client, DENY);
close(client);
@ -244,7 +244,7 @@ void su_daemon_handler(int client, struct ucred *credential) {
// If caller is not root, ensure the owner of pts_slave is the caller
if(st.st_uid != ctx.info->uid && ctx.info->uid != 0)
LOGE("su: Wrong permission of pts_slave");
LOGE("su: Wrong permission of pts_slave\n");
// Opening the TTY has to occur after the
// fork() and setsid() so that it becomes

View File

@ -29,17 +29,17 @@ sFILE make_stream_fp(stream_ptr &&strm) {
}
int stream::read(void *buf, size_t len) {
LOGE("This stream does not support read");
LOGE("This stream does not support read\n");
return -1;
}
int stream::write(const void *buf, size_t len) {
LOGE("This stream does not support write");
LOGE("This stream does not support write\n");
return -1;
}
off_t stream::seek(off_t off, int whence) {
LOGE("This stream does not support seek");
LOGE("This stream does not support seek\n");
return -1;
}