mirror of
https://github.com/Relintai/smtp_node.git
synced 2024-11-13 17:27:21 +01:00
Moved the debug variable to the top and set it to false.
This commit is contained in:
parent
22a2fc4fa5
commit
8e6db2ed8d
@ -13,6 +13,8 @@ enum AuthType {
|
||||
PLAINTEXT, # No SSL
|
||||
}
|
||||
|
||||
var debug : bool = false
|
||||
|
||||
export(String) var smtp_server : String = ""
|
||||
export(int) var smtp_server_port : int = 465
|
||||
|
||||
@ -362,7 +364,6 @@ func bracket(data):
|
||||
func _on_Button_pressed() -> void:
|
||||
send_mail("", "TEST SUBJECT", "TEST MSG!")
|
||||
|
||||
var debug = true
|
||||
func display(data):
|
||||
if debug == true:
|
||||
print("debug: ",data)
|
||||
|
Loading…
Reference in New Issue
Block a user