summaryrefslogtreecommitdiff
path: root/git.c
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2021-06-25 22:15:25 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2021-06-25 22:15:25 -0400
commit4202b28b518553b31fed6e8630dd4f05d4e17ecb (patch)
tree241fb4a47df730d8d7d4954b3b6a9a4b88f8f8cc /git.c
parent1681b9ad0021e0f72bd2f2a4e59e51b9bcdded02 (diff)
Change the log types from `LOG_INFO` to `LOG_NOTICE`
in `create_info()`.
Diffstat (limited to 'git.c')
-rw-r--r--git.c4
1 files 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);