[sdk] Fix typo in log statement

Change-Id: I933c6a154162f445f866828b6ef684915280a7e7
diff --git a/makesdk.go b/makesdk.go
index 479e2a3..afde59c 100755
--- a/makesdk.go
+++ b/makesdk.go
@@ -190,7 +190,7 @@
 		id, absPath := s[0], s[1]
 		relPath, err := filepath.Rel(absBase, absPath)
 		if err != nil {
-			log.Warning("could not create relative path from absolute path", absPath, "and base", absBase, "skipping entry")
+			log.Println("could not create relative path from absolute path", absPath, "and base", absBase, "skipping entry")
 		} else {
 			fmt.Fprintln(dstIds, id, relPath)
 		}