Change nice_debug_verbose as dlog message 18/263418/2 accepted/tizen_6.5_unified tizen_6.5 accepted/tizen/6.5/unified/20211029.013819 accepted/tizen/unified/20210907.121855 submit/tizen/20210902.060944 submit/tizen/20210906.055733 submit/tizen/20210907.040339 submit/tizen_6.5/20211028.163501 tizen_6.5.m2_release
authorYoungHun Kim <yh8004.kim@samsung.com>
Thu, 2 Sep 2021 03:05:23 +0000 (12:05 +0900)
committerYoungHun Kim <yh8004.kim@samsung.com>
Thu, 2 Sep 2021 03:07:48 +0000 (12:07 +0900)
Change-Id: I6d759bf95019e6fcd02bede420bd88d6f980f18e

agent/agent-priv.h
agent/debug.c
packaging/libnice.spec

index 5cca7ad..e8458a0 100644 (file)
@@ -331,10 +331,12 @@ gboolean nice_debug_is_verbose (void);
 #ifdef USE_DLOG
 #define nice_debug(fmt, arg...) \
   do { if (nice_debug_is_enabled ()) LOGD (fmt, ##arg); } while (0)
+#define nice_debug_verbose(fmt, arg...) \
+  do { if (nice_debug_is_verbose ()) LOGD (fmt, ##arg); } while (0)
 #else
 void nice_debug (const char *fmt, ...) G_GNUC_PRINTF (1, 2);
-#endif /* USE_DLOG */
 void nice_debug_verbose (const char *fmt, ...) G_GNUC_PRINTF (1, 2);
+#endif /* USE_DLOG */
 #endif /* NDEBUG */
 
 #if !GLIB_CHECK_VERSION(2, 59, 0)
index 280ceda..1fe0554 100644 (file)
@@ -163,7 +163,6 @@ void nice_debug (const char *fmt, ...)
     va_end (ap);
   }
 }
-#endif
 void nice_debug_verbose (const char *fmt, ...)
 {
   va_list ap;
@@ -173,6 +172,7 @@ void nice_debug_verbose (const char *fmt, ...)
     va_end (ap);
   }
 }
+#endif
 #else
 /* Defined in agent-priv.h. */
 #endif
index 2daba57..4a8fea5 100644 (file)
@@ -1,7 +1,7 @@
 Name:       libnice
 Summary:    Library for implementing Interactive Connectivity Establishment (ICE) standard (RFC 5245 & RFC 8445)
 Version:    0.1.17
-Release:    1
+Release:    2
 Group:      Multimedia/Libraries
 License:    LGPL-2.1
 Source0:    %{name}-%{version}.tar.gz