исправления уровней логирования

This commit is contained in:
evasina2312@gmail.com 2022-12-21 12:39:18 +04:00
parent e0e57dbd59
commit c271f95422
2 changed files with 6 additions and 6 deletions

View File

@ -70,7 +70,7 @@
this.groupBoxTools.Controls.Add(this.maskedTextBoxPosition); this.groupBoxTools.Controls.Add(this.maskedTextBoxPosition);
this.groupBoxTools.Controls.Add(this.buttonAddTank); this.groupBoxTools.Controls.Add(this.buttonAddTank);
this.groupBoxTools.Dock = System.Windows.Forms.DockStyle.Right; this.groupBoxTools.Dock = System.Windows.Forms.DockStyle.Right;
this.groupBoxTools.Location = new System.Drawing.Point(799, 28); this.groupBoxTools.Location = new System.Drawing.Point(441, 28);
this.groupBoxTools.Name = "groupBoxTools"; this.groupBoxTools.Name = "groupBoxTools";
this.groupBoxTools.Size = new System.Drawing.Size(233, 758); this.groupBoxTools.Size = new System.Drawing.Size(233, 758);
this.groupBoxTools.TabIndex = 0; this.groupBoxTools.TabIndex = 0;
@ -256,7 +256,7 @@
this.pictureBox.Dock = System.Windows.Forms.DockStyle.Fill; this.pictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.pictureBox.Location = new System.Drawing.Point(0, 28); this.pictureBox.Location = new System.Drawing.Point(0, 28);
this.pictureBox.Name = "pictureBox"; this.pictureBox.Name = "pictureBox";
this.pictureBox.Size = new System.Drawing.Size(799, 758); this.pictureBox.Size = new System.Drawing.Size(441, 758);
this.pictureBox.TabIndex = 1; this.pictureBox.TabIndex = 1;
this.pictureBox.TabStop = false; this.pictureBox.TabStop = false;
// //
@ -267,7 +267,7 @@
this.файлToolStripMenuItem}); this.файлToolStripMenuItem});
this.menuStrip.Location = new System.Drawing.Point(0, 0); this.menuStrip.Location = new System.Drawing.Point(0, 0);
this.menuStrip.Name = "menuStrip"; this.menuStrip.Name = "menuStrip";
this.menuStrip.Size = new System.Drawing.Size(1032, 28); this.menuStrip.Size = new System.Drawing.Size(674, 28);
this.menuStrip.TabIndex = 2; this.menuStrip.TabIndex = 2;
this.menuStrip.Text = "menuStrip1"; this.menuStrip.Text = "menuStrip1";
// //
@ -306,7 +306,7 @@
// //
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F); this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1032, 786); this.ClientSize = new System.Drawing.Size(674, 786);
this.Controls.Add(this.pictureBox); this.Controls.Add(this.pictureBox);
this.Controls.Add(this.groupBoxTools); this.Controls.Add(this.groupBoxTools);
this.Controls.Add(this.menuStrip); this.Controls.Add(this.menuStrip);

View File

@ -137,7 +137,7 @@ namespace ProjectMachine
else else
{ {
MessageBox.Show("Не удалось добавить объект"); MessageBox.Show("Не удалось добавить объект");
_logger.Information("Не удалось добавить объект"); _logger.Warning("Не удалось добавить объект");
} }
} }
catch (StorageOverflowException ex) catch (StorageOverflowException ex)
@ -178,7 +178,7 @@ namespace ProjectMachine
} }
else else
{ {
_logger.Information("Не удалось удалить объект по позиции {0}", pos); _logger.Warning("Не удалось удалить объект по позиции {0}", pos);
MessageBox.Show("Не удалось удалить объект"); MessageBox.Show("Не удалось удалить объект");
} }
} }