Changing resource "URL" to "URI"
authorOmkar Hegde <omkar.m.hegde@intel.com>
Thu, 23 Jul 2015 21:35:40 +0000 (14:35 -0700)
committerErich Keane <erich.keane@intel.com>
Thu, 23 Jul 2015 22:36:14 +0000 (22:36 +0000)
We were logging the resource URI as URL which
was ambiguous for the test team.

Change-Id: I90e862cc35f3c1fd3ec2f3a95950668fb45d0134
Signed-off-by: Omkar Hegde <omkar.m.hegde@intel.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/1861
Reviewed-by: Erich Keane <erich.keane@intel.com>
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Joseph Morrow <joseph.l.morrow@intel.com>
resource/csdk/stack/include/ocpayload.h

index 91776c4..e56861c 100644 (file)
@@ -48,7 +48,7 @@ static inline void OCPayloadLogRep(LogLevel level, const char* tag, OCRepPayload
     while(rep)
     {
         OC_LOG_V(level, tag, "\tResource #%d", i);
-        OC_LOG_V(level, tag, "\tURL:%s", rep->uri);
+        OC_LOG_V(level, tag, "\tURI:%s", rep->uri);
         OC_LOG(level, tag, PCF("\tResource Types:"));
         OCStringLL* strll =  rep->types;
         while(strll)