svn commit: r329498 - head/stand/lua

Kyle Evans kevans at FreeBSD.org
Sun Feb 18 01:01:16 UTC 2018


Author: kevans
Date: Sun Feb 18 01:01:15 2018
New Revision: 329498
URL: https://svnweb.freebsd.org/changeset/base/329498

Log:
  stand/lua: Remove some debugging bits that snuck in... gr...

Modified:
  head/stand/lua/config.lua

Modified: head/stand/lua/config.lua
==============================================================================
--- head/stand/lua/config.lua	Sun Feb 18 00:56:12 2018	(r329497)
+++ head/stand/lua/config.lua	Sun Feb 18 01:01:15 2018	(r329498)
@@ -115,7 +115,6 @@ local pattern_table = {
 	[10] = {
 		str = "^%s*([%w%p]+)%s*=%s*\"([%w%s%p]-)\"%s*(.*)",
 		process = function(k, v)
-			print("Setting '"..k.."' to '"..v.."'")
 			if loader.setenv(k, v) ~= 0 then
 				print("Failed to set '"..k.."' with value: "..v.."");
 			end
@@ -125,7 +124,6 @@ local pattern_table = {
 	[11] = {
 		str = "^%s*([%w%p]+)%s*=%s*(%d+)%s*(.*)",
 		process = function(k, v)
-			print("Setting '"..k.."' to '"..v.."'")
 			if loader.setenv(k, v) ~= 0 then
 				print("Failed to set '"..k.."' with value: "..v.."");
 			end


More information about the svn-src-head mailing list