Commit a5189b60 authored by Dietmar Maurer's avatar Dietmar Maurer

remove debugging code

parent 22747e6b
......@@ -117,7 +117,6 @@ Ext.define('PVE.OpenVZ.IPAdd', {
var me = this;
var values = me.formPanel.getValues();
console.dir(values);
if (me.dataCache.ip_address) {
return { ip_address: me.dataCache.ip_address + ' ' + values.ipaddress };
......
......@@ -7,8 +7,6 @@ Ext.define('PVE.qemu.MemoryInputPanel', {
onGetValues: function(values) {
var me = this;
console.dir(values);
var res;
if (values.memoryType === 'fixed') {
......@@ -158,7 +156,6 @@ Ext.define('PVE.qemu.MemoryEdit', {
me.load({
success: function(response, options) {
var data = response.result.data;
console.dir(data);
var values = {
memory: data.memory,
......
......@@ -18,7 +18,6 @@ Ext.define('PVE.qemu.StartupInputPanel', {
var startup = PVE.Parser.parseStartup(value);
if (startup) {
console.dir(startup);
me.setValues(startup);
}
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment