Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/1a8fdb1462f8a506b2043...
...commit
http://git.netsurf-browser.org/netsurf.git/commit/1a8fdb1462f8a506b204387...
...tree
http://git.netsurf-browser.org/netsurf.git/tree/1a8fdb1462f8a506b2043877a...
The branch, master has been updated
via 1a8fdb1462f8a506b2043877ab73cb86a9179ca6 (commit)
from 22fd851e1438afba1486f3e7a48e47435e0171f7 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/netsurf.git/commit/?id=1a8fdb1462f8a506b20...
commit 1a8fdb1462f8a506b2043877ab73cb86a9179ca6
Author: Chris Young <chris(a)unsatisfactorysoftware.co.uk>
Commit: Chris Young <chris(a)unsatisfactorysoftware.co.uk>
Change logging back to INFO
diff --git a/frontends/amiga/libs.c b/frontends/amiga/libs.c
index ace24bf..cbef3c2 100644
--- a/frontends/amiga/libs.c
+++ b/frontends/amiga/libs.c
@@ -62,7 +62,7 @@
NSLOG(netsurf, INFO, " -> opened v%d.%d", ((struct Library
*)PREFIX##Base)->lib_Version, ((struct Library *)PREFIX##Base)->lib_Revision); \
I##PREFIX = (struct PREFIX##IFace *)GetInterface((struct Library *)PREFIX##Base,
INTERFACE, INTVER, NULL); \
if(I##PREFIX == NULL) { \
- NSLOG(netsurf, ERROR, "Failed to get %s interface v%d of %s", INTERFACE,
INTVER, LIB); \
+ NSLOG(netsurf, INFO, "Failed to get %s interface v%d of %s", INTERFACE,
INTVER, LIB); \
AMINS_LIB_CLOSE(PREFIX) \
if(FAIL == true) { \
STRPTR error = ASPrintf("Unable to open interface %s v%d\nof %s v%ld (fatal
error - not an OS4 lib?)", INTERFACE, INTVER, LIB, LIBVER); \
@@ -72,7 +72,7 @@
} \
} \
} else { \
- NSLOG(netsurf, ERROR, "Failed to open %s v%d", LIB, LIBVER); \
+ NSLOG(netsurf, INFO, "Failed to open %s v%d", LIB, LIBVER); \
if(FAIL == true) { \
STRPTR error = ASPrintf("Unable to open %s v%ld (fatal error)", LIB,
LIBVER); \
ami_misc_fatal_error(error); \
@@ -104,7 +104,7 @@
} \
} \
if(PREFIX##Class == NULL) { \
- NSLOG(netsurf, ERROR, "Failed to open %s v%d", CLASS, CLASSVER); \
+ NSLOG(netsurf, INFO, "Failed to open %s v%d", CLASS, CLASSVER); \
STRPTR error = ASPrintf("Unable to open %s v%d (fatal error)", CLASS,
CLASSVER); \
ami_misc_fatal_error(error); \
FreeVec(error); \
@@ -126,7 +126,7 @@
if((PREFIX##Base = (struct PREFIX##Base *)OpenLibrary(LIB, LIBVER))) { \
NSLOG(netsurf, INFO, " -> opened v%d.%d", ((struct Library
*)PREFIX##Base)->lib_Version, ((struct Library *)PREFIX##Base)->lib_Revision); \
} else { \
- NSLOG(netsurf, ERROR, "Failed to open %s v%d", LIB, LIBVER); \
+ NSLOG(netsurf, INFO, "Failed to open %s v%d", LIB, LIBVER); \
if(FAIL == true) { \
STRPTR error = ASPrintf("Unable to open %s v%d (fatal error)", LIB,
LIBVER); \
ami_misc_fatal_error(error); \
@@ -148,7 +148,7 @@
PREFIX##Class = CLASSGET##_GetClass(); \
} \
if(PREFIX##Class == NULL) { \
- NSLOG(netsurf, ERROR, "Failed to open %s v%d", CLASS, CLASSVER); \
+ NSLOG(netsurf, INFO, "Failed to open %s v%d", CLASS, CLASSVER); \
STRPTR error = ASPrintf("Unable to open %s v%d (fatal error)", CLASS,
CLASSVER); \
ami_misc_fatal_error(error); \
FreeVec(error); \
-----------------------------------------------------------------------
Summary of changes:
frontends/amiga/libs.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/frontends/amiga/libs.c b/frontends/amiga/libs.c
index ace24bf..cbef3c2 100644
--- a/frontends/amiga/libs.c
+++ b/frontends/amiga/libs.c
@@ -62,7 +62,7 @@
NSLOG(netsurf, INFO, " -> opened v%d.%d", ((struct Library
*)PREFIX##Base)->lib_Version, ((struct Library *)PREFIX##Base)->lib_Revision); \
I##PREFIX = (struct PREFIX##IFace *)GetInterface((struct Library *)PREFIX##Base,
INTERFACE, INTVER, NULL); \
if(I##PREFIX == NULL) { \
- NSLOG(netsurf, ERROR, "Failed to get %s interface v%d of %s", INTERFACE,
INTVER, LIB); \
+ NSLOG(netsurf, INFO, "Failed to get %s interface v%d of %s", INTERFACE,
INTVER, LIB); \
AMINS_LIB_CLOSE(PREFIX) \
if(FAIL == true) { \
STRPTR error = ASPrintf("Unable to open interface %s v%d\nof %s v%ld (fatal
error - not an OS4 lib?)", INTERFACE, INTVER, LIB, LIBVER); \
@@ -72,7 +72,7 @@
} \
} \
} else { \
- NSLOG(netsurf, ERROR, "Failed to open %s v%d", LIB, LIBVER); \
+ NSLOG(netsurf, INFO, "Failed to open %s v%d", LIB, LIBVER); \
if(FAIL == true) { \
STRPTR error = ASPrintf("Unable to open %s v%ld (fatal error)", LIB,
LIBVER); \
ami_misc_fatal_error(error); \
@@ -104,7 +104,7 @@
} \
} \
if(PREFIX##Class == NULL) { \
- NSLOG(netsurf, ERROR, "Failed to open %s v%d", CLASS, CLASSVER); \
+ NSLOG(netsurf, INFO, "Failed to open %s v%d", CLASS, CLASSVER); \
STRPTR error = ASPrintf("Unable to open %s v%d (fatal error)", CLASS,
CLASSVER); \
ami_misc_fatal_error(error); \
FreeVec(error); \
@@ -126,7 +126,7 @@
if((PREFIX##Base = (struct PREFIX##Base *)OpenLibrary(LIB, LIBVER))) { \
NSLOG(netsurf, INFO, " -> opened v%d.%d", ((struct Library
*)PREFIX##Base)->lib_Version, ((struct Library *)PREFIX##Base)->lib_Revision); \
} else { \
- NSLOG(netsurf, ERROR, "Failed to open %s v%d", LIB, LIBVER); \
+ NSLOG(netsurf, INFO, "Failed to open %s v%d", LIB, LIBVER); \
if(FAIL == true) { \
STRPTR error = ASPrintf("Unable to open %s v%d (fatal error)", LIB,
LIBVER); \
ami_misc_fatal_error(error); \
@@ -148,7 +148,7 @@
PREFIX##Class = CLASSGET##_GetClass(); \
} \
if(PREFIX##Class == NULL) { \
- NSLOG(netsurf, ERROR, "Failed to open %s v%d", CLASS, CLASSVER); \
+ NSLOG(netsurf, INFO, "Failed to open %s v%d", CLASS, CLASSVER); \
STRPTR error = ASPrintf("Unable to open %s v%d (fatal error)", CLASS,
CLASSVER); \
ami_misc_fatal_error(error); \
FreeVec(error); \
--
NetSurf Browser