summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);