c745dcef93
With rpm version < 4.13, patch cmd will create .orig file for fuzzy patch in default. And this .orig file may lead to rpmbuild failure "error: Installed (but unpackaged) file(s) found:" Please visit below link to get more detail info: https://bugs.launchpad.net/starlingx/+bug/1794611 Story: 2003917 Task: 26965 Change-Id: I3d68b3008688d4b32957f4ba335dea5207a4be65 Signed-off-by: slin14 <shuicheng.lin@intel.com>
26 lines
833 B
Diff
26 lines
833 B
Diff
From 7418bcd86697c9403418ea90ddfe2ad3092d9854 Mon Sep 17 00:00:00 2001
|
|
From: Don Penney <don.penney@windriver.com>
|
|
Date: Fri, 30 Dec 2016 11:01:22 -0500
|
|
Subject: Add timestamps to logs
|
|
|
|
---
|
|
lib/puppet/util/log/destinations.rb | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/lib/puppet/util/log/destinations.rb b/lib/puppet/util/log/destinations.rb
|
|
index 14d5008..36f5367 100644
|
|
--- a/lib/puppet/util/log/destinations.rb
|
|
+++ b/lib/puppet/util/log/destinations.rb
|
|
@@ -167,7 +167,7 @@ Puppet::Util::Log.newdesttype :console do
|
|
str = msg.source == "Puppet" ? str : "#{msg.source}: #{str}"
|
|
|
|
level = levels[msg.level]
|
|
- level[:stream].puts colorize(level[:color], "#{level[:name]}: #{str}")
|
|
+ level[:stream].puts colorize(level[:color], "#{level[:name]}: #{msg.time} #{str}")
|
|
end
|
|
end
|
|
|
|
--
|
|
2.7.4
|
|
|