From 4202b28b518553b31fed6e8630dd4f05d4e17ecb Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Fri, 25 Jun 2021 22:15:25 -0400 Subject: Change the log types from `LOG_INFO` to `LOG_NOTICE` in `create_info()`. --- git.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git.c b/git.c index 04c088f..1f8eefc 100644 --- a/git.c +++ b/git.c @@ -84,13 +84,13 @@ int create_info(pull_request *pr, const char *pr_dir) { long size = 0; char *buf = read_file(info, &size); - log(LOG_INFO, "Info file already exists."); + log(LOG_NOTICE, "Info file already exists."); /* Did we read the file? */ if (buf != NULL) { /* Are the contents of the info file the same? */ if (strcmp(info_buf, buf) == 0) { - log(LOG_INFO, "New info file is the same as the existing one."); + log(LOG_NOTICE, "New info file is the same as the existing one."); free(info); free(info_buf); free(buf); -- cgit v1.2.3-13-gbd6f