mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 03:44:02 +02:00
no mo useless debug statements
This commit is contained in:
parent
06bd9c97bf
commit
a92162dea9
1 changed files with 0 additions and 2 deletions
|
@ -275,7 +275,6 @@ function fromQml(message) { // messages are {method, params}, like json-rpc. See
|
|||
uri: METAVERSE_BASE + '/api/v1/user/connections/' + connectionUserName,
|
||||
method: 'DELETE'
|
||||
}, function (error, response) {
|
||||
print(JSON.stringify(response));
|
||||
if (error || (response.status !== 'success')) {
|
||||
print("Error: unable to remove connection", connectionUserName, error || response.status);
|
||||
return;
|
||||
|
@ -290,7 +289,6 @@ function fromQml(message) { // messages are {method, params}, like json-rpc. See
|
|||
uri: METAVERSE_BASE + '/api/v1/user/friends/' + friendUserName,
|
||||
method: 'DELETE'
|
||||
}, function (error, response) {
|
||||
print(JSON.stringify(response));
|
||||
if (error || (response.status !== 'success')) {
|
||||
print("Error: unable to unfriend", friendUserName, error || response.status);
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue