mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Log jsonLoad/Save as trace instead of debug.
This commit is contained in:
parent
68d361380a
commit
bc0326da9c
@ -493,7 +493,7 @@ let Utils = {
|
||||
jsonLoad: function Utils_jsonLoad(filePath, that, callback) {
|
||||
filePath = "weave/" + filePath + ".json";
|
||||
if (that._log)
|
||||
that._log.debug("Loading json from disk: " + filePath);
|
||||
that._log.trace("Loading json from disk: " + filePath);
|
||||
|
||||
let file = Utils.getProfileFile(filePath);
|
||||
if (!file.exists())
|
||||
@ -525,7 +525,7 @@ let Utils = {
|
||||
jsonSave: function Utils_jsonSave(filePath, that, callback) {
|
||||
filePath = "weave/" + filePath + ".json";
|
||||
if (that._log)
|
||||
that._log.debug("Saving json to disk: " + filePath);
|
||||
that._log.trace("Saving json to disk: " + filePath);
|
||||
|
||||
let file = Utils.getProfileFile({ autoCreate: true, path: filePath });
|
||||
let json = typeof callback == "function" ? callback.call(that) : callback;
|
||||
|
Loading…
Reference in New Issue
Block a user