grim/convey

Parents 633a8d6b092b
Children 0b79cbad2618
Mention that the old deprecated format will be removed in a future version. Fixed #165
--- a/loaders/convey/tasks.go Mon Feb 12 22:59:02 2018 -0600
+++ b/loaders/convey/tasks.go Tue Feb 13 20:47:39 2018 -0600
@@ -36,7 +36,7 @@
// figure out the engine
if rawEngine != "" {
- logger.Warn("the engine attribute is deprecated and will be removed in a future version. Please update to the new type format")
+ logger.Warn("the engine attribute is deprecated and will be removed in a future version. Please update to the new type format as this format will be removed in a future version.")
if rawEngine == "intrinsic" {
logger.Warn("the intrinsic engine is deprecated, using convey instead")
@@ -56,7 +56,7 @@
typeName := fmt.Sprintf("%s/%s", legacyEngine, legacyType)
logger.Warnf(
- "converted deprecated task format {engine: '%s', type: '%s'} to type %s. Please update to the new type.",
+ "converted deprecated task format {engine: '%s', type: '%s'} to type %s. Please update to the new type format as this format will be removed in a future version.",
rawEngine,
rawType,
typeName,