mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Remove console.log
This commit is contained in:
parent
24912fa5ab
commit
43d81f6b5c
1 changed files with 0 additions and 3 deletions
|
|
@ -779,13 +779,10 @@ angular.module('zeppelinWebApp')
|
|||
websocketMsgSrv.completion($scope.paragraph.id, buf, pos);
|
||||
|
||||
$scope.$on('completionList', function(event, data) {
|
||||
console.log('%o', data);
|
||||
if (data.completions) {
|
||||
var completions = [];
|
||||
for (var c in data.completions) {
|
||||
var v = data.completions[c];
|
||||
console.log('%o', v);
|
||||
console.log('%o %o', v.name, v.value);
|
||||
completions.push({
|
||||
name: v.name,
|
||||
value: v.value,
|
||||
|
|
|
|||
Loading…
Reference in a new issue