summaryrefslogtreecommitdiff
path: root/frontends/cocoa/plotter.m
diff options
context:
space:
mode:
authorSven Weidauer <sven@5sw.de>2017-12-23 12:28:17 +0100
committerSven Weidauer <sven@5sw.de>2017-12-23 12:28:17 +0100
commitafa0de1ce3f5de4ad732c3ed98eb4ff8dcf9ac92 (patch)
tree57e28e3ace6c07b8b7bb99a9c449c3179f18ad44 /frontends/cocoa/plotter.m
parentcb452810b98273f1bf3275321386c8393d5c5134 (diff)
downloadnetsurf-afa0de1ce3f5de4ad732c3ed98eb4ff8dcf9ac92.tar.gz
netsurf-afa0de1ce3f5de4ad732c3ed98eb4ff8dcf9ac92.tar.bz2
Change LOG calls to NSLOG
Diffstat (limited to 'frontends/cocoa/plotter.m')
-rw-r--r--frontends/cocoa/plotter.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontends/cocoa/plotter.m b/frontends/cocoa/plotter.m
index f91167701..a6afbb93a 100644
--- a/frontends/cocoa/plotter.m
+++ b/frontends/cocoa/plotter.m
@@ -203,7 +203,7 @@ static nserror plot_path(const struct redraw_context *ctx, const plot_style_t *p
return NSERROR_OK;
if (*p != PLOTTER_PATH_MOVE) {
- LOG("Path does not start with move");
+ NSLOG(netsurf, INFO, "Path does not start with move");
return NSERROR_INVALID;
}
@@ -238,7 +238,7 @@ static nserror plot_path(const struct redraw_context *ctx, const plot_style_t *p
break;
default:
- LOG("Invalid path");
+ NSLOG(netsurf, INFO, "Invalid path");
return NSERROR_INVALID;
}
}