diff --git a/R/export_prj.R b/R/export_prj.R
index 1eb87ac3b6222919442e2cd6cafe26643dc7909a..c16ec7cf0bdd833e80ba1e60170def5572df705a 100644
--- a/R/export_prj.R
+++ b/R/export_prj.R
@@ -67,13 +67,10 @@ export_prj <- function(ogs6_obj) {
 
     file <- paste0(ogs6_obj$sim_path, ogs6_obj$sim_name, ".prj")
 
-    cat("\nWriting XML to ", file, "\n")
     xml2::write_xml(prj_xml,
                     file,
                     options = "format",
                     encoding="ISO-8859-1")
 
-    cat("\nDone writing XML.\n")
-
     return(invisible(TRUE))
 }