summary refs log tree commit diff
path: root/application/cmd
diff options
context:
space:
mode:
authorMel <einebeere@gmail.com>2024-12-29 21:25:48 +0100
committerMel <einebeere@gmail.com>2024-12-29 21:25:48 +0100
commit684c8381dd35ae41ecd8665caacb08ea3399a6a3 (patch)
treedc124fcfda190e9f8f3411dd12d46d952091501a /application/cmd
parent6228ed5c566b099f33a7763ac9c02d4703e0aa12 (diff)
downloadspecimen-684c8381dd35ae41ecd8665caacb08ea3399a6a3.tar.zst
specimen-684c8381dd35ae41ecd8665caacb08ea3399a6a3.zip
Remove unnecessary debug logging from application
Signed-off-by: Mel <einebeere@gmail.com>
Diffstat (limited to 'application/cmd')
-rw-r--r--application/cmd/specimen/cfg/config.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/application/cmd/specimen/cfg/config.go b/application/cmd/specimen/cfg/config.go
index 713ad96..f27dbc4 100644
--- a/application/cmd/specimen/cfg/config.go
+++ b/application/cmd/specimen/cfg/config.go
@@ -57,9 +57,6 @@ func validateAndSet(c *Config, namePath string) error {
 		return fmt.Errorf("failed to read the name file. %w", err)
 	}
 
-	fmt.Printf("read %d bytes from the name file\n", n)
-	fmt.Printf("name: %s\n", string(name[:n]))
-
 	c.Name = string(name[:n])
 	return nil
 }