hermet pushed a commit to branch master.

http://git.enlightenment.org/tools/enventor.git/commit/?id=47fb10341ceb375d884853ed41edca5f90a869c5

commit 47fb10341ceb375d884853ed41edca5f90a869c5
Author: Hermet Park <[email protected]>
Date:   Wed Jun 1 23:22:03 2016 +0900

    main: print warning message correctly.
    
    that message is not about a programmers error but user's mis-usage.
    That shouldn't be eina_log_error.
---
 src/bin/main.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/bin/main.c b/src/bin/main.c
index 2320a9f..3feb3cb 100644
--- a/src/bin/main.c
+++ b/src/bin/main.c
@@ -330,8 +330,8 @@ defaults:
         //Do not overwrite existing EDC file with template code.
         if (*template && ecore_file_exists(edc_path))
           {
-             EINA_LOG_ERR("\"%s\" already exists! Please input another file "
-                          "name with \"-t\" option.\n", edc_path);
+             fprintf(stdout, "\"%s\" already exists! Please input another file 
"
+                     "name with \"-t\" option.\n", edc_path);
              exit(0);
           }
      }

-- 



Reply via email to